forked from ebhomengo/niki
1
0
Fork 0

fix(delivery): fix swagger sending request to the wrong host and port

This commit is contained in:
Ruhollah 2024-09-04 17:32:52 +03:30
parent fab3cfa7d4
commit ccc56ddb03
1 changed files with 2 additions and 3 deletions

View File

@ -67,7 +67,7 @@ func (s Server) Serve() {
func (s Server) RegisterRoutes() {
s.Router.Use(middleware.RequestID())
s.Router.Use(middleware.Recover())
registerSwagger(s.Router, s.config)
registerSwagger(s.Router)
// Routes
s.Router.GET("/health-check", s.healthCheck)
@ -81,12 +81,11 @@ func (s Server) RegisterRoutes() {
s.agentKindBoxHandler.SetRoutes(s.Router)
}
func registerSwagger(s *echo.Echo, c config.Config) {
func registerSwagger(s *echo.Echo) {
// TODO: move this to a better place and make it more dynamic and configurable
docs.SwaggerInfo.Title = "NIKI API"
docs.SwaggerInfo.Description = "This is the API documentation for the NIKI project"
docs.SwaggerInfo.Version = "1.0.0"
docs.SwaggerInfo.Host = fmt.Sprintf("localhost:%d", c.HTTPServer.Port)
s.GET("/swagger/*any", echoSwagger.WrapHandler)
}