Migrate checkin to user service

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2025-12-25 20:30:21 +08:00
parent 9e649d83e5
commit bfeb46a61f
7 changed files with 18 additions and 20 deletions

View File

@@ -8,5 +8,8 @@ import (
func Handler(r *gin.RouterGroup) {
r.Use(middleware.JWTAuth())
r.GET("/info", UserInfo)
r.GET("/info", Info)
r.POST("/checkin", Checkin)
r.PATCH("/update", Update)
r.POST("/create", Create)
}