domain
Domain module. Contains core business logic, domain models, and service implementations. This is the heart of the application, independent of any specific framework or infrastructure.
| MODULE | DESCRIPTION |
|---|---|
entities |
Pure domain entities and enums, independent of any framework or infrastructure. |
ports_primary |
Define how services can be used by external consumers (e.g., HTTP API, CLI). |
ports_secondary |
Define how the domain interacts with infrastructure. |
schemas |
I/O models to interact with entities. |
services |
Orchestrate recipe and authentication operations. |