mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
15 lines
287 B
Go
15 lines
287 B
Go
package application
|
|
|
|
import (
|
|
flowapp "mayfly-go/internal/flow/application"
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
const (
|
|
RedisRunWriteCmdFlowBizType = "redis_run_write_cmd_flow"
|
|
)
|
|
|
|
func InitRedisFlowHandler() {
|
|
flowapp.RegisterBizHandler(RedisRunWriteCmdFlowBizType, ioc.Get[Redis]("RedisApp"))
|
|
}
|