Files
ezbookkeeping/pkg/core/handler.go
T
2020-12-26 00:02:55 +08:00

10 lines
284 B
Go

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