Versions in this module Expand all Collapse all v1 v1.1.0 Feb 5, 2025 v1.0.0 Jan 22, 2025 Changes in this version + var RouterList []*Router = []*Router + func Any(rule string, call func(ctx *_context.Context)) + func Delete(rule string, call func(ctx *_context.Context)) + func Get(rule string, call func(ctx *_context.Context)) + func Group(group func()) + func Head(rule string, call func(ctx *_context.Context)) + func Method(method string, rule string, call func(ctx *_context.Context)) + func MethodList(methodList []string, rule string, call func(ctx *_context.Context)) + func MiddlewareAfter(middleware func(ctx *_context.Context)) *router + func MiddlewareAfterList(middlewareList []func(ctx *_context.Context)) *router + func MiddlewareBefore(middleware func(ctx *_context.Context)) *router + func MiddlewareBeforeList(middlewareList []func(ctx *_context.Context)) *router + func Options(rule string, call func(ctx *_context.Context)) + func Patch(rule string, call func(ctx *_context.Context)) + func Post(rule string, call func(ctx *_context.Context)) + func Prefix(prefix string) *router + func Put(rule string, call func(ctx *_context.Context)) + type Router struct + Call func(ctx *_context.Context) + IsRegexp bool + MethodList []string + MiddlewareAfterList []func(ctx *_context.Context) + MiddlewareBeforeList []func(ctx *_context.Context) + ParameterList []string + Rule string