Files
mayfly-go/server/internal/redis/infrastructure/persistence/persistence.go

10 lines
136 B
Go
Raw Normal View History

2022-09-09 18:26:08 +08:00
package persistence
2024-01-21 22:52:20 +08:00
import (
"mayfly-go/pkg/ioc"
2022-09-09 18:26:08 +08:00
)
2024-01-21 22:52:20 +08:00
func Init() {
ioc.Register(newRedisRepo(), ioc.WithComponentName("RedisRepo"))
}