Adding readme for workflows

This commit is contained in:
Ryan Lettieri 2022-08-29 09:54:05 -06:00
parent 3066378a62
commit 405984a6cc
2 changed files with 8 additions and 1 deletions

View File

@ -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) {

7
workflows/Readme.md Normal file
View File

@ -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.