Files
ezbookkeeping/pkg/core/handler.go
T
2020-10-17 22:02:50 +08:00

8 lines
162 B
Go

package core
import "github.com/mayswind/lab/pkg/errs"
type MiddlewareHandlerFunc func(*Context)
type ApiHandlerFunc func(*Context) (interface{}, *errs.Error)