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