Files
soul-yongping/soul-api/internal/handler/wechat.go

13 lines
192 B
Go

package handler
import (
"net/http"
"github.com/gin-gonic/gin"
)
// WechatLogin POST /api/wechat/login
func WechatLogin(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"success": true})
}