2026-08-22 10:26:05 -07:00
|
|
|
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
|
|
|
|
|
}
|