MCPcopy
hub / github.com/gin-gonic/gin / GET

Function GET

ginS/gins.go:66–68  ·  ginS/gins.go::GET

GET is a shortcut for router.Handle("GET", path, handle)

(relativePath string, handlers ...gin.HandlerFunc)

Source from the content-addressed store, hash-verified

64
65// GET is a shortcut for router.Handle("GET", path, handle)
66func GET(relativePath string, handlers ...gin.HandlerFunc) gin.IRoutes {
67 return engine().GET(relativePath, handlers...)
68}
69
70// DELETE is a shortcut for router.Handle("DELETE", path, handle)
71func DELETE(relativePath string, handlers ...gin.HandlerFunc) gin.IRoutes {

Callers 3

TestGETFunction · 0.85
TestUseFunction · 0.85
TestRoutesFunction · 0.85

Calls 1

GETMethod · 0.65

Tested by 3

TestGETFunction · 0.68
TestUseFunction · 0.68
TestRoutesFunction · 0.68