This commit is contained in:
chenp 2021-06-27 10:49:54 +08:00
parent 0b993201ce
commit 272f8869ad
4 changed files with 17 additions and 2 deletions

3
.gitignore vendored
View File

@ -2,4 +2,5 @@ dist/
.temp/
.idea/
.DS_Store
*.pdf
*.pdf
*.svg

View File

@ -12,7 +12,8 @@ skinparam ComponentStyle uml2
skinparam Shadowing false
skinparam Default {
FontName "'Input Mono','Microsoft YaHei Mono',Menlo, Monaco, 'Courier New', monospace"
'FontName "'Input Mono','Microsoft YaHei Mono',Menlo, Monaco, 'Courier New', monospace"
FontName "'Noto Sans SC', sans-serif"
FontColor Black
FontSize 14
FontStyle plain

View File

@ -14,6 +14,8 @@ export_on_save:
```plantuml
@startuml
!include https://deep-tek.com/puml/core.puml
用户 -> 认证中心: 登录操作
认证中心 -> 缓存: 存放(key=token+ip,value=token)token

11
samples/demo01.puml Normal file
View File

@ -0,0 +1,11 @@
@startuml
!include ../puml/core.puml
autonumber
张三 -> Bob: Authentication Request
Bob --> 张三: Authentication Response
张三 -> Bob: Another authentication Request
张三 <-- Bob: another authentication Response
@enduml