23 lines
409 B
Go
23 lines
409 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// CKBJoin POST /api/ckb/join
|
|
func CKBJoin(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// CKBMatch POST /api/ckb/match
|
|
func CKBMatch(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// CKBSync GET/POST /api/ckb/sync
|
|
func CKBSync(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|