Created
July 21, 2021 17:03
-
-
Save rcshubhadeep/592a06690aa2902ab2adf5689a514949 to your computer and use it in GitHub Desktop.
New StateMachine
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
func New() *StateMachine { | |
s := &StateMachine{} | |
s.g = multi.NewDirectedGraph() | |
return s | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment