├── .gitignore ├── LICENSE ├── README.md ├── example └── wire_transfer.go ├── fsm.go ├── fsm_test.go └── go.mod /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | go.sum 3 | .vscode/ 4 | fsm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyrkin/fsm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyrkin/fsm/HEAD/README.md -------------------------------------------------------------------------------- /example/wire_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyrkin/fsm/HEAD/example/wire_transfer.go -------------------------------------------------------------------------------- /fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyrkin/fsm/HEAD/fsm.go -------------------------------------------------------------------------------- /fsm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyrkin/fsm/HEAD/fsm_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/dyrkin/fsm 2 | --------------------------------------------------------------------------------