Files
poimen-workflows/workflow/test_workflow.go
T

11 lines
233 B
Go
Raw Normal View History

package workflow
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
}