login.go 391 B

12345678910111213141516171819
  1. package Controllers
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "goLoad1/Services"
  5. )
  6. type LoginInfo struct {
  7. }
  8. func (con LoginInfo) LoginController(c *gin.Context) {
  9. Services.QueryUser(c)
  10. //token, err := Services.GenerateToken("", "")
  11. //if err != nil {
  12. // c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
  13. // return
  14. //}
  15. //c.JSON(http.StatusOK, gin.H{"token": token})
  16. }