Created
July 6, 2019 18:40
-
-
Save yokada/799bc111ce4ea7801b2f251e21177aec to your computer and use it in GitHub Desktop.
Super simple state machine running within 10 seconds for test.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"StartAt": "WaitExecution", | |
"States": { | |
"WaitExecution": { | |
"Type": "Wait", | |
"Seconds": 10, | |
"End": true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment