Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions challenge-01/diagrams/flow.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
flowchart TD

%% Parent nodes
Root([main])
End([end])
child1[Setup Flags & Config]
child2[Read Input]
child3["Update config(input)"]
child4[Analyzer]
child5["Update config(result)"]

%% Internal nodes
child21{Input Source?}
child41((process))

%% Flow
Root --> child1
child1 --> child2
child2 --> child21
child21 --> |terminal| child3
child21 --> |stdin| child3
child3 --> child4
child4 --> |options| child41
child41 --> child5
child5 --> End
15 changes: 15 additions & 0 deletions challenge-01/diagrams/sequence.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sequenceDiagram

%% module declaration
participant M as Main
participant C as Config
participant R as Reader
participant A as Analyzer

%% Sequence
M ->> C: set configuration with flags
M ->> A: read input
R ->> C: update config(add input data)
M ->> A: analyze input
A ->> C: update config(add result data)
M ->> C: get result
Loading