NamedTask defines an interface for task types that have a name
| 14 | |
| 15 | // NamedTask defines an interface for task types that have a name |
| 16 | type NamedTask interface { |
| 17 | // GetName returns the name of the task |
| 18 | GetName() string |
| 19 | } |
| 20 | |
| 21 | type WorkflowTask[I, O any] struct { |
| 22 | // (required) The name of the task and workflow |
nothing calls this directly
no outgoing calls
no test coverage detected