package facade import ( "github.com/gin-gonic/gin" "github.com/minio/minio-go/v7" "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 Router *gin.Engine S3 *minio.Client ) func init() { //panic("ent not impl, if impl, uncommit this line") }