Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

2 settimane fa
1234567891011
  1. //! Data transfer objects (DTOs) and domain models.
  2. //!
  3. //! Convention:
  4. //! - `*Request` — inbound JSON body (what the caller sends).
  5. //! - `*Response` — outbound JSON body (what we return).
  6. //! - Domain structs without a suffix hold business data (DB row shape, etc.).
  7. //!
  8. //! Keep request/response types thin — no business logic here.
  9. pub mod item;
  10. pub mod pagination;