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

Function DELETE

ginS/gins.go:71–73  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

69
70// DELETE is a shortcut for router.Handle("DELETE", path, handle)
71func DELETE(relativePath string, handlers ...gin.HandlerFunc) gin.IRoutes {
72 return engine().DELETE(relativePath, handlers...)
73}
74
75// PATCH is a shortcut for router.Handle("PATCH", path, handle)
76func PATCH(relativePath string, handlers ...gin.HandlerFunc) gin.IRoutes {

Callers 1

TestDELETEFunction · 0.85

Calls 1

DELETEMethod · 0.65

Tested by 1

TestDELETEFunction · 0.68