Files
S8N.WorkflowTemplate/MyWorkflow.cs

10 lines
230 B
C#
Raw Normal View History

2025-12-31 16:52:00 +03:00
public partial class MyWorkflow : s8n_runtime.WorkflowRuntime
{
public override Task RunAsync(CancellationToken cancellation)
{
// Your custom code here
2026-01-01 12:05:40 +03:00
2025-12-31 16:52:00 +03:00
return base.RunAsync(cancellation);
}
}