cli/entity/handler.go
2020-10-23 11:57:58 -07:00

7 lines
182 B
Go

package entity
import "context"
type HandlerFunction func(context.Context, *CommandRequest) error
type PanicFunction func(context.Context, string, string, string, []string) error