chore: refactor (#2130)
This commit is contained in:
@@ -79,13 +79,15 @@ func (s *Server) PrintRoutes() {
|
|||||||
s.ngin.print()
|
s.ngin.print()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Routes returns the Http routers which are registered in the engine
|
// Routes returns the HTTP routers that registered in the server.
|
||||||
func (s *Server) Routes() []Route {
|
func (s *Server) Routes() []Route {
|
||||||
routers := make([]Route, len(s.ngin.routes))
|
var routes []Route
|
||||||
|
|
||||||
for _, r := range s.ngin.routes {
|
for _, r := range s.ngin.routes {
|
||||||
routers = append(routers, r.routes...)
|
routes = append(routes, r.routes...)
|
||||||
}
|
}
|
||||||
return routers
|
|
||||||
|
return routes
|
||||||
}
|
}
|
||||||
|
|
||||||
// Start starts the Server.
|
// Start starts the Server.
|
||||||
|
|||||||
Reference in New Issue
Block a user