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