From 7d16707a2867fe41671b8b6193bdd6c4ceefafd1 Mon Sep 17 00:00:00 2001 From: Project_IO Date: Wed, 19 Mar 2025 16:42:56 +0900 Subject: [PATCH] feat: add TODO --- internal/routes/auth.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/routes/auth.go b/internal/routes/auth.go index 269c46d..7f68ef0 100644 --- a/internal/routes/auth.go +++ b/internal/routes/auth.go @@ -63,6 +63,7 @@ func authentication(group *gin.RouterGroup) { ctx.Status(200) }) + // TODO: change to middleware soon group.GET("/check", func(ctx *gin.Context) { auth := service.NewAuthService() username, password, ok := ctx.Request.BasicAuth()