site and webhooks packages stubbed

This commit is contained in:
2025-12-23 22:35:38 -07:00
commit cdbc08dea2
16 changed files with 527 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
@startuml
object Event
object "HTTP Request" as HTTPRequest
object Headers
object Body
object "event description" as EventDescription
cloud platform {
object Order
}
Event --> HTTPRequest
HTTPRequest *-- Headers
HTTPRequest *-- Body
Body *-- EventDescription
EventDescription : store
EventDescription : id
EventDescription : timestamp
EventDescription : order
EventDescription <|- Order
@enduml