aro_core/lib.rs
1//! Core domain layer for the Aro web framework.
2//!
3//! This crate contains port traits, entity abstractions, and error types.
4//! It has zero framework dependencies.
5
6pub mod entity;
7pub mod error;
8#[cfg(any(test, feature = "test-utils"))]
9pub mod mock_repo;
10pub mod pagination;
11pub mod repository;
12#[doc(hidden)]
13pub mod routing;
14pub mod state;