mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
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)
|