2025-07-06 17:59:18 +03:00
|
|
|
package interfaces
|
|
|
|
|
|
2025-07-07 17:48:36 +03:00
|
|
|
import (
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
)
|
2025-07-06 17:59:18 +03:00
|
|
|
|
|
|
|
|
type Router interface {
|
|
|
|
|
Set() *gin.Engine
|
2025-09-10 21:57:09 +03:00
|
|
|
AuthMW() gin.HandlerFunc
|
2025-09-14 19:33:09 +03:00
|
|
|
RefreshMW() gin.HandlerFunc
|
2025-07-06 17:59:18 +03:00
|
|
|
}
|