package interfaces import "io" type Formatter interface { Format(object []any) (io.Reader, error) }