Skip to content

architecture

github-actions[bot] edited this page Oct 5, 2023 · 2 revisions

Architecture

sequenceDiagram
    participant C as Client
    participant S as Server
    participant DB as Database
    C-->>S: Request
    S->>DB: Query
    activate DB
    DB->>S: Response
    deactivate DB
    S-->>C: Response
    Note over S,DB: SQL
    Note over C,S: HTTP, JSON format
Loading

Clone this wiki locally