Skip to content

Instantly share code, notes, and snippets.

@mccraychassidy
Created December 13, 2023 05:53
Show Gist options
  • Save mccraychassidy/18f7ecc048ddbf6889b2d4e402417745 to your computer and use it in GitHub Desktop.
Save mccraychassidy/18f7ecc048ddbf6889b2d4e402417745 to your computer and use it in GitHub Desktop.
Dependency Graph
@startuml
'https://plantuml.com/sequence-diagram
class PillPackCheckWeightActivity {}
class MedicationMetadataDao {}
class MetricsItemQueue {}
class MetricsReportDao{}
PillPackCheckWeightActivity ---> MedicationMetadataDao
PillPackCheckWeightActivity ---> MetricsItemQueue
PillPackCheckWeightActivity ---> MetricsReportDao
MedicationMetadataDao ---> DynamoDBMapper
MetricsItemQueue ---> AmazonSQS
MetricsReportDao ---> AmazonS3
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment