10 lines
222 B
C#
10 lines
222 B
C#
|
|
public partial class MyWorkflow : s8n_runtime.WorkflowRuntime
|
||
|
|
{
|
||
|
|
|
||
|
|
public override Task RunAsync(CancellationToken cancellation)
|
||
|
|
{
|
||
|
|
// Your custom code here
|
||
|
|
|
||
|
|
return base.RunAsync(cancellation);
|
||
|
|
}
|
||
|
|
}
|