diff --git a/tests/certification/workflows/temporal/temporal_test.go b/tests/certification/workflows/temporal/temporal_test.go index 3ffa18889..7a46444a3 100644 --- a/tests/certification/workflows/temporal/temporal_test.go +++ b/tests/certification/workflows/temporal/temporal_test.go @@ -15,10 +15,10 @@ package temporal_test import ( "fmt" + "github.com/dapr/components-contrib/workflows" "strconv" "testing" "time" - // "github.com/dapr/components-contrib/workflows" ) func TestTemporal(t *testing.T) { diff --git a/workflows/Readme.md b/workflows/Readme.md new file mode 100644 index 000000000..8b1536106 --- /dev/null +++ b/workflows/Readme.md @@ -0,0 +1,7 @@ +# Workflows + +A workflow is custom application logic that consists of a set of tasks and or state transitions. + +## Implementing a new Workflow + +A compliant workflow needs to implement the `Workflow` inteface included in the [`workflow.go`](workflow.go) file.