8 lines
162 B
Go
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)
|