Add user info service

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2025-12-25 02:50:27 +08:00
parent 396ab10469
commit f8b6c1b1df
5 changed files with 45 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ package server
import (
"nixcn-cms/service/auth"
"nixcn-cms/service/checkin"
"nixcn-cms/service/user"
"github.com/gin-gonic/gin"
)
@@ -12,4 +13,5 @@ func Router(e *gin.Engine) {
api := e.Group("/api/v1")
auth.Handler(api.Group("/auth"))
checkin.Handler(api.Group("/checkin"))
user.Handler(api.Group("/user"))
}