online-order/entity/server.go

17 lines
221 B
Go
Raw Normal View History

2023-10-27 09:51:58 +00:00
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
}