Group create new group with current HttpServer
(prefix string)
| 382 | |
| 383 | // Group create new group with current HttpServer |
| 384 | func (server *HttpServer) Group(prefix string) Group { |
| 385 | return NewGroup(prefix, server) |
| 386 | } |
| 387 | |
| 388 | // Binder get binder interface in server |
| 389 | func (server *HttpServer) Binder() Binder { |
nothing calls this directly
no test coverage detected