initial template with runtime

This commit is contained in:
2025-12-31 16:52:00 +03:00
parent 5ac059b0ba
commit a12a2c294b
6 changed files with 27 additions and 28 deletions

10
MyWorkflow.cs Normal file
View File

@@ -0,0 +1,10 @@
public partial class MyWorkflow : s8n_runtime.WorkflowRuntime
{
public override Task RunAsync(CancellationToken cancellation)
{
// Your custom code here
return base.RunAsync(cancellation);
}
}