Remove user create api

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2025-12-25 21:32:20 +08:00
parent b30d9db69d
commit 8e43d6699c
2 changed files with 0 additions and 8 deletions

View File

@@ -1,7 +0,0 @@
package user
import "github.com/gin-gonic/gin"
func Create(c *gin.Context) {
}

View File

@@ -11,5 +11,4 @@ func Handler(r *gin.RouterGroup) {
r.GET("/info", Info)
r.POST("/checkin", Checkin)
r.PATCH("/update", Update)
r.POST("/create", Create)
}