mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-27 11:30:25 +08:00
12 lines
389 B
Go
12 lines
389 B
Go
|
|
package application
|
||
|
|
|
||
|
|
import "mayfly-go/pkg/eventbus"
|
||
|
|
|
||
|
|
var flowEventBus eventbus.Bus[any] = eventbus.New[any]()
|
||
|
|
|
||
|
|
const (
|
||
|
|
EventTopicFlowProcinstCreate = "flow:procinst:create" // 流程实例创建事件
|
||
|
|
EventTopicFlowProcinstCancel = "flow:procinst:cancel" // 流程实例取消事件
|
||
|
|
EventTopicFlowProcinstCompleted = "flow:procinst:completed" // 流程实例完成事件
|
||
|
|
)
|