Checkin time data column, checkin module

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2025-12-25 02:17:28 +08:00
parent ca08c997c8
commit 396ab10469
6 changed files with 22 additions and 9 deletions

View File

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