2026-07-16 12:32:17 +07:00
|
|
|
#![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 application;
|
2026-07-17 06:44:31 +07:00
|
|
|
pub mod domain;
|
2026-07-16 12:32:17 +07:00
|
|
|
pub mod infrastructure;
|