-
Notifications
You must be signed in to change notification settings - Fork 14
Workflows
Ayush Chugh edited this page Oct 7, 2022
·
1 revision
flowchart LR
A[/Request/] --> B[Route]
B --> C[Schema]
C --> D{Additional Middleware?}
D --> |Yes| E[Middleware]
D --> |NO| F[Controller]
E --> F
F --> G[/Response/]
flowchart LR
A[Controller] --> B[Service] --> C[(Database)]
C --> B --> A