rag/internal/access/bind.go
2024-06-13 15:08:55 +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
Router *gin.Engine
)
func init() {
panic("ent not impl, if impl, uncommit this line")
}