11 lines
186 B
Go
11 lines
186 B
Go
package interfaces
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"merch-parser-api/internal/shared"
|
|
)
|
|
|
|
type Router interface {
|
|
Set() *gin.Engine
|
|
ExcludeRoutes(routes []shared.ExcludeRoute)
|
|
}
|