api/internal/interfaces/app.go

13 lines
179 B
Go
Raw Normal View History

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