api/internal/interfaces/router.go

8 lines
100 B
Go
Raw Normal View History

2025-07-06 17:59:18 +03:00
package interfaces
import "github.com/gin-gonic/gin"
type Router interface {
Set() *gin.Engine
}