Skip to content

Instantly share code, notes, and snippets.

@shekodn
Created March 10, 2020 21:02
Show Gist options
  • Save shekodn/81eeefdefc7ae810947269ad15d1bbb2 to your computer and use it in GitHub Desktop.
Save shekodn/81eeefdefc7ae810947269ad15d1bbb2 to your computer and use it in GitHub Desktop.
crapi_diagram.pu
@startuml
left to right direction
actor "Alice" as a
rectangle "Not So crAPI App" as r {
rectangle "Application Logic" as logic
rectangle "Authenticator" as auth
rectangle "Access Controller" as ac
rectangle "Rate Limiter" as rl
rectangle "Logger" as l
}
a --> r : "Request"
r -- rl
rl -- auth
auth -- l
l -- ac
ac -- logic
a <-- r : "Response"
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment