api/internal/interfaces/router.go
2025-07-06 17:59:18 +03:00

7 lines
100 B
Go

package interfaces
import "github.com/gin-gonic/gin"
type Router interface {
Set() *gin.Engine
}