diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-13 18:37:20 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-13 18:37:20 +0200 |
commit | 8a8039f61888a51e2508a15c5af7ab3afa5756ab (patch) | |
tree | 2820028d3fe8bf3487c6cf258c888b4c8c3e3fae /docs |
WIP
Diffstat (limited to 'docs')
-rw-r--r-- | docs/.gitignore | 1 | ||||
-rw-r--r-- | docs/class-diag.puml | 8 | ||||
-rw-r--r-- | docs/makefile | 8 |
3 files changed, 17 insertions, 0 deletions
diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..756b22f --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1 @@ +*.svg diff --git a/docs/class-diag.puml b/docs/class-diag.puml new file mode 100644 index 0000000..7db3bd3 --- /dev/null +++ b/docs/class-diag.puml @@ -0,0 +1,8 @@ +@startuml + +!theme plain +skinparam linetype ortho +skinparam classAttributeIconSize 0 + + +@enduml diff --git a/docs/makefile b/docs/makefile new file mode 100644 index 0000000..0bbe6e1 --- /dev/null +++ b/docs/makefile @@ -0,0 +1,8 @@ +all: class-diag.svg + +%.svg: %.puml + plantuml -tsvg $< + +clean: + git clean -fxdi + |