18 lines
564 B
Rust
18 lines
564 B
Rust
#![allow(
|
|||
|
|
clippy::cast_possible_truncation,
|
||
|
|
clippy::cast_sign_loss,
|
||
|
|
clippy::cast_precision_loss,
|
||
|
|
clippy::cast_possible_wrap
|
||
|
|
)]
|
||
|
|
//! zesdex-iam — Identity & Access Management crate.
|
||
|
|
//!
|
||
|
|
//! Clean Architecture / Domain-Driven Design structure:
|
||
|
|
//!
|
||
|
|
//! - **domain** — Pure entities and repository/service trait definitions
|
||
|
|
//! - **application**— Use-case implementations of the service traits
|
||
|
|
//! - **infrastructure** — Concrete persistence (filesystem) and HTTP adapter layers
|
||
|
|
|
||
|
|
pub mod domain;
|
||
|
|
pub mod application;
|
||
|
|
pub mod infrastructure;
|