mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-05 00:40:24 +08:00
12 lines
196 B
Go
12 lines
196 B
Go
package application
|
|
|
|
import "mayfly-go/internal/redis/infrastructure/persistence"
|
|
|
|
var (
|
|
redisApp Redis = newRedisApp(persistence.GetRedisRepo())
|
|
)
|
|
|
|
func GetRedisApp() Redis {
|
|
return redisApp
|
|
}
|