(route types.HTTPRoute)
| 27 | type HTTPServer interface { |
| 28 | Listen(addr string, proto HTTPProto) error |
| 29 | AddRoute(route types.HTTPRoute) |
| 30 | DelRoute(route types.HTTPRoute) |
| 31 | FindRoute(s string) types.HTTPRoute |
| 32 | ServeHTTP(w http.ResponseWriter, r *http.Request) |
no outgoing calls