HEAD implements `Router#HEAD()` for sub-routes within the Group.
(path string, h HttpHandle)
| 89 | |
| 90 | // HEAD implements `Router#HEAD()` for sub-routes within the Group. |
| 91 | func (g *xGroup) HEAD(path string, h HttpHandle) RouterNode { |
| 92 | return g.add(RouteMethod_HEAD, path, h) |
| 93 | } |
| 94 | |
| 95 | // OPTIONS implements `Router#OPTIONS()` for sub-routes within the Group. |
| 96 | func (g *xGroup) OPTIONS(path string, h HttpHandle) RouterNode { |