package interfaces import ( "github.com/gin-gonic/gin" "merch-parser-api/internal/shared" ) type Module interface { } type ModuleRoutes interface { RegisterRoutes(r *gin.RouterGroup) ExcludeRoutes() []shared.ExcludeRoute }