package handler import ( "net/http" "github.com/gin-gonic/gin" ) // MatchConfigGet GET /api/match/config func MatchConfigGet(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"success": true}) } // MatchConfigPost POST /api/match/config func MatchConfigPost(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"success": true}) } // MatchUsers POST /api/match/users (Next 为 POST,拆解计划写 GET,两法都挂) func MatchUsers(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"success": true, "data": []interface{}{}}) }