mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-02-06 12:55:36 +08:00
14 lines
147 B
Go
14 lines
147 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(new(redisAppImpl))
|
|
}
|
|
|
|
func Init() {
|
|
InitRedisFlowHandler()
|
|
}
|