OPTIONS implements `Router#OPTIONS()` for sub-routes within the Group.
(path string, h HttpHandle)
| 94 | |
| 95 | // OPTIONS implements `Router#OPTIONS()` for sub-routes within the Group. |
| 96 | func (g *xGroup) OPTIONS(path string, h HttpHandle) RouterNode { |
| 97 | return g.add(RouteMethod_OPTIONS, path, h) |
| 98 | } |
| 99 | |
| 100 | // PATCH implements `Router#PATCH()` for sub-routes within the Group. |
| 101 | func (g *xGroup) PATCH(path string, h HttpHandle) RouterNode { |