Files
mayfly-go/server/internal/flow/application/event.go
2025-05-20 21:04:47 +08:00

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" // 流程实例完成事件
)