(ctx Context)
| 57 | // Router is the interface that wraps the router method. |
| 58 | Router interface { |
| 59 | ServeHTTP(ctx Context) |
| 60 | ServerFile(path string, fileRoot string) RouterNode |
| 61 | RegisterServerFile(routeMethod string, path string, fileRoot string, excludeExtension []string) RouterNode |
| 62 | GET(path string, handle HttpHandle) RouterNode |
no outgoing calls