First merge from develop to main (WIP) #7

Merged
sugar merged 199 commits from develop into main 2026-01-27 17:47:07 +00:00
Showing only changes of commit c7cefb3898 - Show all commits

View File

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