mirror of
https://github.com/bringout/cybrosys.git
synced 2026-04-18 13:52:00 +02:00
17 lines
351 B
Markdown
17 lines
351 B
Markdown
# Controllers
|
|
|
|
HTTP routes provided by this module.
|
|
|
|
```mermaid
|
|
sequenceDiagram
|
|
participant U as User/Client
|
|
participant C as Module Controllers
|
|
participant O as ORM/Views
|
|
|
|
U->>C: HTTP GET/POST (routes)
|
|
C->>O: ORM operations, render templates
|
|
O-->>U: HTML/JSON/PDF
|
|
```
|
|
|
|
Notes
|
|
- See files in controllers/ for route definitions.
|