18 lines
482 B
Rust
18 lines
482 B
Rust
//! `zesdex-cms` — Content Management System
|
|||
|
|
//!
|
||
|
|
//! Clean Architecture / DDD crate layout:
|
||
|
|
//! - **domain** — Pure entities and repository/service traits
|
||
|
|
//! - **application** — Use-case implementations
|
||
|
|
//! - **infrastructure** — Persistence adapters + HTTP handlers
|
||
|
|
|
||
|
|
#![allow(
|
||
|
|
clippy::cast_possible_truncation,
|
||
|
|
clippy::cast_sign_loss,
|
||
|
|
clippy::cast_precision_loss,
|
||
|
|
clippy::cast_possible_wrap
|
||
|
|
)]
|
||
|
|
|
||
|
|
pub mod domain;
|
||
|
|
pub mod application;
|
||
|
|
pub mod infrastructure;
|