removed simple check

This commit is contained in:
2026-01-29 09:33:50 +08:00
parent 6d8a2faf25
commit 3abaf6f592
2 changed files with 5 additions and 85 deletions
-1
View File
@@ -20,7 +20,6 @@ func SetupRoutes(router *mux.Router, db *sql.DB) {
authRoutes := router.PathPrefix("/v1/auth").Subrouter()
authRoutes.HandleFunc("/check", rateLimiter(middleware.JWTAuth(handlers.AuthorizeHandler))).Methods("POST")
authRoutes.HandleFunc("/simple-check", rateLimiter(middleware.JWTAuth(handlers.SimpleCheckHandler))).Methods("POST")
router.PathPrefix("/swagger/").Handler(httpSwagger.WrapHandler)
}