framework_v2/internal/access/bind.go
2024-06-13 14:33:14 +08:00

20 lines
313 B
Go

package access
import (
"github.com/gin-gonic/gin"
"github.com/redis/go-redis/v9"
"go.uber.org/zap"
)
var (
// uncommit it after run make ent
//Ent *ent.Client
Redis *redis.Client
Logger *zap.Logger
Gin *gin.Engine
)
func init() {
panic("ent not impl, if impl, uncommit this line")
}