Skip to content

Commit 1a929e8

Browse files
committed
Start state exploration
1 parent 8319cb8 commit 1a929e8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,27 @@ My hope with this project is to create a general purpose GUI on top of the [DAP]
2525
* stable
2626
* TBD
2727

28+
## Internals
29+
30+
WIP
31+
32+
```mermaid
33+
---
34+
title: State machine
35+
---
36+
37+
stateDiagram-v2
38+
[*] --> Initialized: [1]
39+
Initialized --> Running: [2]
40+
Running --> Paused: [2]
41+
Paused --> Running: [3]
42+
Running --> Terminated: [5]
43+
Terminated --> [*]
44+
```
45+
46+
1. Initializing
47+
* Set up initial state
48+
49+
2850
[dap]: https://microsoft.github.io/debug-adapter-protocol/
51+

0 commit comments

Comments
 (0)