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
+49
View File
@@ -0,0 +1,49 @@
@startuml
cloud {
[Web site]
}
cloud {
[Tiktok API]
[Etsy API]
[Etc APIs]
}
node "http server" {
frame "site" {
[REST API]
[HTML Templates]
}
frame "webhooks" {
[Tiktok Hook]
[Etsy Hook]
[Etc Hooks]
}
}
node "domains" {
[store events]
[tiktok]
[etsy]
[etc]
}
[Web site] -- [REST API]
[REST API] -- [HTML Templates]
[REST API] -- [store events]
[REST API] -- [tiktok]
[REST API] -- [etsy]
[REST API] -- [etc]
[Tiktok API] -- [Tiktok Hook]
[Etsy API] -- [Etsy Hook]
[Etc APIs] -- [Etc Hooks]
[Tiktok Hook] -- [tiktok]
[Etsy Hook] -- [etsy]
[Etc Hooks] -- [etc]
@enduml