merch-api/internal/app/interfaces.go

11 lines
163 B
Go
Raw Permalink Normal View History

2026-02-23 20:02:53 +03:00
package app
2026-03-21 15:21:30 +03:00
import (
"github.com/gin-gonic/gin"
"merch-api/pkg/router"
)
2026-02-23 20:02:53 +03:00
type Module interface {
2026-03-21 15:21:30 +03:00
RegisterRoutes(r *gin.RouterGroup, mw *router.Middlewares)
2026-02-23 20:02:53 +03:00
}