DELETE is a shortcut for router.Handle(http.MethodDelete, path, handle)
(path string, handle Handle)
| 230 | |
| 231 | // DELETE is a shortcut for router.Handle(http.MethodDelete, path, handle) |
| 232 | func (r *Router) DELETE(path string, handle Handle) { |
| 233 | r.Handle(http.MethodDelete, path, handle) |
| 234 | } |
| 235 | |
| 236 | // Handle registers a new request handle with the given path and method. |
| 237 | // |