2023-08-23 11:27:23 +02:00
|
|
|
#!/usr/bin/env bash
|
2026-07-18 15:33:19 -03:00
|
|
|
set -euo pipefail
|
|
|
|
|
|
2023-08-25 01:46:25 +02:00
|
|
|
go run ./fsm/stateparser/stateparser.go --out ./fsm/example_fsm.md --fsm example
|
2026-07-18 16:13:43 -03:00
|
|
|
go run ./fsm/stateparser/stateparser.go --out ./instantout/reservation/fsm.md --fsm reservation
|
2026-07-18 15:33:19 -03:00
|
|
|
go run ./fsm/stateparser/stateparser.go --out ./instantout/fsm.md --fsm instantout
|
2026-07-18 15:35:14 -03:00
|
|
|
go run ./fsm/stateparser/stateparser.go --out ./staticaddr/deposit/fsm.md --fsm staticaddr-deposit
|
|
|
|
|
go run ./fsm/stateparser/stateparser.go --out ./staticaddr/loopin/fsm.md --fsm staticaddr-loopin
|