feat: go output formatter

This commit is contained in:
2025-07-20 15:19:47 +02:00
parent 0b0f0c9f0a
commit ef07dd1b86
6 changed files with 50 additions and 11 deletions

View File

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

13
core/output/go.go Normal file
View File

@ -0,0 +1,13 @@
package output
import (
"fmt"
"io"
"strings"
)
type GoFormatter struct{}
func (f *GoFormatter) Format(object any) (io.Reader, error) {
return strings.NewReader(fmt.Sprintf("%#v", object)), nil
}