modulepackage
0.0.0-20230519210813-9e9a5116bd93
Repository: https://github.com/thinkcmf/catgo.git
Documentation: pkg.go.dev
# README
catgo
Catgo is a web framework of go, based on Gin and Gorm
To do list
*[x] validate *[ ] cache *[ ] config *[ ] env
# Functions
Any registers a route that matches all the HTTP methods.
No description provided by the author
No description provided by the author
No description provided by the author
change currentRouterGroup to Router.
DELETE is a shortcut for catgo.Handle("DELETE", path, handle).
GET is a shortcut for catgo.Handle("GET", path, handle).
No description provided by the author
No description provided by the author
create new route group relativePath,examples: /users /users/:id handlers,examples:gin.HandlerFunc,catgo.HandlerFunc.
Handle registers a new request handle and middleware with the given path and method.
HEAD is a shortcut for catgo.Handle("HEAD", path, handle).
No description provided by the author
No description provided by the author
No description provided by the author
OPTIONS is a shortcut for catgo.Handle("OPTIONS", path, handle).
No description provided by the author
.
PATCH is a shortcut for catgo.Handle("PATCH", path, handle).
POST is a shortcut for catgo.Handle("POST", path, handle).
PUT is a shortcut for catgo.Handle("PUT", path, handle).
No description provided by the author
No description provided by the author
StructCopy copy the exported value of a struct to a likely struct , with reflect.
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Type aliases
No description provided by the author