network/workflow.go

11 lines
218 B
Go
Raw Permalink Normal View History

2022-10-11 17:36:09 +08:00
package network
// Workflow describes stream function workflows.
type Workflow struct {
// Seq represents the sequence id when executing workflows.
Seq int
// Token represents the name of workflow.
Name string
}