added: exclude routes

This commit is contained in:
nquidox 2025-07-07 17:48:36 +03:00
parent 0a53ac2974
commit 2028671a54
2 changed files with 11 additions and 1 deletions

View file

@ -1,7 +1,11 @@
package interfaces
import "github.com/gin-gonic/gin"
import (
"github.com/gin-gonic/gin"
"merch-parser-api/internal/shared"
)
type Router interface {
Set() *gin.Engine
ExcludeRoutes(routes []shared.ExcludeRoute)
}