12345678910111213141516171819 |
- package Controllers
- import (
- "github.com/gin-gonic/gin"
- "goLoad1/Services"
- )
- type LoginInfo struct {
- }
- func (con LoginInfo) LoginController(c *gin.Context) {
- Services.QueryUser(c)
- //token, err := Services.GenerateToken("", "")
- //if err != nil {
- // c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
- // return
- //}
- //c.JSON(http.StatusOK, gin.H{"token": token})
- }
|