├── .github └── CODEOWNERS ├── .gitignore ├── LICENSE ├── README.md ├── activity.go ├── banking-client.go ├── go.mod ├── go.sum ├── shared.go ├── start └── main.go ├── worker └── main.go ├── workflow.go └── workflow_test.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/README.md -------------------------------------------------------------------------------- /activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/activity.go -------------------------------------------------------------------------------- /banking-client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/banking-client.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/go.sum -------------------------------------------------------------------------------- /shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/shared.go -------------------------------------------------------------------------------- /start/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/start/main.go -------------------------------------------------------------------------------- /worker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/worker/main.go -------------------------------------------------------------------------------- /workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/workflow.go -------------------------------------------------------------------------------- /workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/money-transfer-project-template-go/HEAD/workflow_test.go --------------------------------------------------------------------------------