package controller

import (
	"eta/eta_docs/controller/resp"
	"github.com/gin-gonic/gin"
)

type AuthController struct {
}

func (a *AuthController) Login(c *gin.Context) {
	resp.OkData("登录成功", nil, c)
	return
}