merch-api/internal/app/interfaces.go
2026-03-21 15:21:30 +03:00

10 lines
163 B
Go

package app
import (
"github.com/gin-gonic/gin"
"merch-api/pkg/router"
)
type Module interface {
RegisterRoutes(r *gin.RouterGroup, mw *router.Middlewares)
}