online-order/entity/server.go
2023-10-27 13:21:58 +03:30

17 lines
221 B
Go

package entity
import (
"github.com/gin-gonic/gin"
"online-order/ent"
)
type RouterBase struct {
Database *ent.Client
OpenApp *gin.RouterGroup
}
type Routers struct {
RouterBase
RestrictedApp *gin.RouterGroup
}