feat: yaml output formatter

This commit is contained in:
2025-07-20 15:28:10 +02:00
parent ef07dd1b86
commit 2e16c67321
5 changed files with 24 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import (
var Formatters = map[string]interfaces.Formatter{
"json": &JsonFormatter{},
"yaml": nil,
"yaml": &YamlFormatter{},
"go": &GoFormatter{},
"table": nil,
}