Skip to content

Instantly share code, notes, and snippets.

@metal3d
Last active December 10, 2015 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metal3d/4502226 to your computer and use it in GitHub Desktop.
Save metal3d/4502226 to your computer and use it in GitHub Desktop.
Exemples PlantUML
@startuml
A -> B: le label de mon appel
B -> A: autre label...
@enduml
@startuml
A -> B: flèche d'appel
B --> A: flèche d'évènement
A ->> B: flèche ouverte
@enduml
@startuml
A -> B: appel 1
opt un test sur A
A -> C
else test autre...
A -> D
end
@enduml
@startuml
actor John
John --> Connector: GET /api/v1/user/1
Connector -> BDD: getUser(1)
BDD -> Connector : UserObject
Connector -> John: display User Page
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment