feat: add name formatter

This commit is contained in:
2025-07-24 21:19:40 +02:00
parent 723aae48ce
commit 79c6a1ea8a
2 changed files with 22 additions and 0 deletions

View File

@ -12,4 +12,5 @@ var Formatters = map[string]interfaces.Formatter{
"csv": &TableFormatter{HideSummary: true, RenderFormat: tableFormatCSV},
"html": &TableFormatter{HideSummary: true, RenderFormat: tableFormatHTML},
"markdown": &TableFormatter{HideSummary: true, RenderFormat: tableFormatMarkdown},
"name": &NameFormatter{},
}