github.com/tuingking/flamingo@v0.0.0-20220403134817-2796ae0e84ca/infra/redis/redis.go (about) 1 package redis 2 3 var ( 4 client *Redis 5 ) 6 7 type Redis struct { 8 } 9 10 type Config struct { 11 } 12 13 func Init(cfg Config) *Redis { 14 if client != nil { 15 return client 16 } 17 18 client = &Redis{} 19 20 return client 21 }