feat: json output formatter

This commit is contained in:
2025-07-20 14:15:20 +02:00
parent 7d561ea6ea
commit 0b0f0c9f0a
8 changed files with 60 additions and 22 deletions

View File

@ -0,0 +1,7 @@
package interfaces
import "io"
type Formatter interface {
Format(object any) (io.Reader, error)
}