PUT implements `Router#PUT()` for sub-routes within the Group.
(path string, h HttpHandle)
| 109 | |
| 110 | // PUT implements `Router#PUT()` for sub-routes within the Group. |
| 111 | func (g *xGroup) PUT(path string, h HttpHandle) RouterNode { |
| 112 | return g.add(RouteMethod_PUT, path, h) |
| 113 | } |
| 114 | |
| 115 | // PUT implements `Router#PUT()` for sub-routes within the Group. |
| 116 | func (g *xGroup) ServerFile(path string, fileroot string) RouterNode { |