mirror of
https://github.com/cubixle/tuugen.git
synced 2026-04-30 23:28:40 +01:00
wip
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package interactors
|
||||
|
||||
import (
|
||||
"fmt"{{ range .Imports }}
|
||||
"{{ . }}"{{ end }}
|
||||
)
|
||||
|
||||
type Interactor struct {
|
||||
|
||||
}
|
||||
{{ range .Funcs }}
|
||||
func (i *Interactor) {{ .Name }}({{.ArgsToStr}}) {{ if gt (len .Returns) 0 }}({{.ListToStr .Returns}}){{end}} {
|
||||
return nil, fmt.Errorf("unimplemented")
|
||||
}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user