api/internal/interfaces/router.go
2025-09-14 19:33:09 +03:00

11 lines
160 B
Go

package interfaces
import (
"github.com/gin-gonic/gin"
)
type Router interface {
Set() *gin.Engine
AuthMW() gin.HandlerFunc
RefreshMW() gin.HandlerFunc
}