2025-07-06 17:59:18 +03:00
|
|
|
package interfaces
|
|
|
|
|
|
2025-07-07 17:48:36 +03:00
|
|
|
import (
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
"merch-parser-api/internal/shared"
|
|
|
|
|
)
|
2025-07-06 17:59:18 +03:00
|
|
|
|
|
|
|
|
type Router interface {
|
|
|
|
|
Set() *gin.Engine
|
2025-07-07 17:48:36 +03:00
|
|
|
ExcludeRoutes(routes []shared.ExcludeRoute)
|
2025-07-06 17:59:18 +03:00
|
|
|
}
|