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