20 lines
315 B
Go
20 lines
315 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")
|
|
}
|