10 lines
163 B
Go
10 lines
163 B
Go
|
|
package router
|
||
|
|
|
||
|
|
import "github.com/gin-gonic/gin"
|
||
|
|
|
||
|
|
type AuthHandler interface {
|
||
|
|
Login(c *gin.Context)
|
||
|
|
RefreshToken(c *gin.Context)
|
||
|
|
GetProfile(c *gin.Context)
|
||
|
|
}
|