summaryrefslogtreecommitdiff
path: root/client/fsm.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-05-30 17:15:19 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2024-05-30 17:15:19 +0200
commit98b67b272bcbf137f5cb3cc8cf809d8e34b2272f (patch)
treeb514b65c49d4bbde81a63a16ba13721eee242683 /client/fsm.go
parent3dcb85a9b9f3ef14d0bcad037ad66832dafe0eb6 (diff)
FSM: Remove Mermaid graph generation
Too complicated to be in the core codebase and I only sometimes need it to view the updated figure. Create a CLI tool some time later
Diffstat (limited to 'client/fsm.go')
-rw-r--r--client/fsm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/fsm.go b/client/fsm.go
index 82b737d..92e4de7 100644
--- a/client/fsm.go
+++ b/client/fsm.go
@@ -169,7 +169,7 @@ func newFSM(
},
}
returnedFSM := fsm.FSM{}
- returnedFSM.Init(StateMain, states, callback, directory, GetStateName, debug)
+ returnedFSM.Init(StateMain, states, callback, directory, GetStateName)
return returnedFSM
}