-
-
Notifications
You must be signed in to change notification settings - Fork 9
Architecture
Pier edited this page Dec 9, 2025
·
16 revisions
test
flowchart LR
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
** Test
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;