Show support for Swift Conductor. Please help spread the awareness by starring Swift Conductor repo.
Client usage:
- Setup
swift-conductor-client
package - Create and run task workers
- Create workflows using code
- API Documentation
dotnet add package swift-conductor-client
using SwiftConductor.Api;
using SwiftConductor.Client;
var configuration = new Configuration() {
BasePath = "http://localhost:8080",
};
var workflowClient = configuration.GetClient<WorkflowResourceApi>();
workflowClient.StartWorkflow(
name: "test-sdk-csharp-workflow",
body: new Dictionary<string, object>(),
version: 1
)