| 14 | ) |
| 15 | |
| 16 | type Server struct { |
| 17 | cfg *config.Config |
| 18 | handlers *handlers.Handlers |
| 19 | httpServer *http.Server |
| 20 | } |
| 21 | |
| 22 | func NewServer(application *application.Application, handlers *handlers.Handlers) *Server { |
| 23 | router := chi.NewRouter() |
nothing calls this directly
no outgoing calls
no test coverage detected