13 lines
225 B
Go
13 lines
225 B
Go
package output
|
|
|
|
import (
|
|
"git.bissendorf.co/bissendorf/unifood/m/v2/core/interfaces"
|
|
)
|
|
|
|
var Formatters = map[string]interfaces.Formatter{
|
|
"json": &JsonFormatter{},
|
|
"yaml": nil,
|
|
"go": &GoFormatter{},
|
|
"table": nil,
|
|
}
|