DELETE implements `Router#DELETE()` for sub-routes within the Group.
(path string, h HttpHandle)
| 79 | |
| 80 | // DELETE implements `Router#DELETE()` for sub-routes within the Group. |
| 81 | func (g *xGroup) DELETE(path string, h HttpHandle) RouterNode { |
| 82 | return g.add(RouteMethod_DELETE, path, h) |
| 83 | } |
| 84 | |
| 85 | // GET implements `Router#GET()` for sub-routes within the Group. |
| 86 | func (g *xGroup) GET(path string, h HttpHandle) RouterNode { |