mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
12 lines
256 B
Go
12 lines
256 B
Go
package application
|
|
|
|
import flowapp "mayfly-go/internal/flow/application"
|
|
|
|
const (
|
|
DbSqlExecFlowBizType = "db_sql_exec_flow" // db sql exec flow biz type
|
|
)
|
|
|
|
func InitDbFlowHandler() {
|
|
flowapp.RegisterBizHandler(DbSqlExecFlowBizType, GetDbSqlExecApp())
|
|
}
|