mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-07 09:50:26 +08:00
12 lines
187 B
Go
12 lines
187 B
Go
|
|
package persistence
|
||
|
|
|
||
|
|
import "mayfly-go/internal/redis/domain/repository"
|
||
|
|
|
||
|
|
var (
|
||
|
|
redisRepo repository.Redis = newRedisRepo()
|
||
|
|
)
|
||
|
|
|
||
|
|
func GetRedisRepo() repository.Redis {
|
||
|
|
return redisRepo
|
||
|
|
}
|