Generates Mermaid diagrams for documentation.
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Action 1]
B -->|No| D[Action 2]
C --> E[End]
D --> E
sequenceDiagram
Client->>API: POST /orders
API->>DB: INSERT order
DB-->>API: order_id
API-->>Client: Confirmation
graph TB
subgraph Frontend
A[React App]
end
subgraph Backend
B[API Gateway]
C[Auth Service]
end
A --> B
B --> C
共 1 个版本
暂无安全检测报告