fix health route

This commit is contained in:
kandrusyak
2023-08-24 22:40:44 +03:00
parent 3a59b0896e
commit ea0a14bcf7
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ func main() {
// Routes
mainGroup.GET("/*", checkAuth)
mainGroup.GET("/health", handler.Health)
e.GET("/health", handler.Health)
// Users
mainGroup.POST("/auth/login", users.Login)