meti-backend/internal/router/auth_handler.go

10 lines
163 B
Go
Raw Normal View History

2025-08-09 15:08:26 +07:00
package router
import "github.com/gin-gonic/gin"
type AuthHandler interface {
Login(c *gin.Context)
RefreshToken(c *gin.Context)
GetProfile(c *gin.Context)
}