2025-07-06 22:24:06 +03:00
|
|
|
package interfaces
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Module interface {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ModuleRoutes interface {
|
2025-09-14 19:33:09 +03:00
|
|
|
RegisterRoutes(r *gin.RouterGroup, authMW gin.HandlerFunc, refreshMW gin.HandlerFunc)
|
2025-07-06 22:24:06 +03:00
|
|
|
}
|