Files
poimen-workflows/statemachine/test_workflow.go
T

11 lines
237 B
Go
Raw Normal View History

package statemachine
import (
"go.temporal.io/sdk/workflow"
)
// TestWorkflow is a simple workflow for integration testing
func TestWorkflow(ctx workflow.Context) (string, error) {
return "test workflow executed successfully", nil
}