add new command api

This commit is contained in:
Jay
2018-12-10 16:11:13 +08:00
parent 35379d5c8c
commit e2f4766436
4 changed files with 47 additions and 1 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ type Context struct {
type CustomMiddle func(*Context)
// PatchCtx - patch ctx to custom middle
func PatchCtx(handler func(*Context)) gin.HandlerFunc {
func PatchCtx(handler CustomMiddle) gin.HandlerFunc {
return func(c *gin.Context) {
ctx := &Context{
Context: c,