mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-04-06 20:55:19 +08:00
14 lines
182 B
Go
14 lines
182 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(new(redisAppImpl), ioc.WithComponentName("RedisApp"))
|
|
}
|
|
|
|
func Init() {
|
|
InitRedisFlowHandler()
|
|
}
|