framework_v2/internal/app/facades/bind.go

22 lines
370 B
Go
Raw Normal View History

2024-06-15 16:55:25 +00:00
package facades
2024-06-13 01:16:48 +00:00
import (
2024-06-13 06:32:33 +00:00
"github.com/gin-gonic/gin"
2024-06-16 06:13:56 +00:00
"github.com/minio/minio-go/v7"
2024-06-13 01:16:48 +00:00
"github.com/redis/go-redis/v9"
"go.uber.org/zap"
)
var (
// uncommit it after run make ent
//Ent *ent.Client
2024-06-13 06:32:33 +00:00
Redis *redis.Client
Logger *zap.Logger
2024-06-13 07:08:55 +00:00
Router *gin.Engine
2024-06-16 06:13:56 +00:00
S3 *minio.Client
2024-06-13 01:16:48 +00:00
)
func init() {
2024-06-13 07:36:51 +00:00
//panic("ent not impl, if impl, uncommit this line")
2024-06-13 01:16:48 +00:00
}