aro-core 1.0.0

Core domain layer for the Aro web framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core domain layer for the Aro web framework.
//!
//! This crate contains port traits, entity abstractions, and error types.
//! It has zero framework dependencies.

pub mod entity;
pub mod error;
#[cfg(any(test, feature = "test-utils"))]
pub mod mock_repo;
pub mod pagination;
pub mod repository;
#[doc(hidden)]
pub mod routing;
pub mod state;