mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
15 lines
270 B
Go
15 lines
270 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/internal/redis/infrastructure/persistence"
|
|
tagapp "mayfly-go/internal/tag/application"
|
|
)
|
|
|
|
var (
|
|
redisApp Redis = newRedisApp(persistence.GetRedisRepo(), tagapp.GetTagTreeApp())
|
|
)
|
|
|
|
func GetRedisApp() Redis {
|
|
return redisApp
|
|
}
|