This commit is contained in:
Alex-larget
2026-03-05 09:54:23 +08:00
parent 5a5f0087d2
commit 41f9e108ac
92 changed files with 2 additions and 12480 deletions

View File

@@ -1,22 +0,0 @@
package handler
import (
"net/http"
"github.com/gin-gonic/gin"
)
// SyncGet GET /api/sync
func SyncGet(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"success": true})
}
// SyncPost POST /api/sync
func SyncPost(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"success": true})
}
// SyncPut PUT /api/sync
func SyncPut(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"success": true})
}