PATCH is a shortcut for router.Handle("PATCH", path, handle)
(path string, handle HttpHandle)
| 339 | |
| 340 | // PATCH is a shortcut for router.Handle("PATCH", path, handle) |
| 341 | func (server *HttpServer) PATCH(path string, handle HttpHandle) RouterNode { |
| 342 | return server.Router().PATCH(path, handle) |
| 343 | } |
| 344 | |
| 345 | // DELETE is a shortcut for router.Handle("DELETE", path, handle) |
| 346 | func (server *HttpServer) DELETE(path string, handle HttpHandle) RouterNode { |