8 lines
103 B
Go
8 lines
103 B
Go
package interfaces
|
|
|
|
import "io"
|
|
|
|
type Formatter interface {
|
|
Format(object []any) (io.Reader, error)
|
|
}
|