2026-01-01 17:35:58 +01:00
|
|
|
//! Relay domain module.
|
|
|
|
|
//!
|
|
|
|
|
//! This module contains the core domain logic for relay control and management,
|
|
|
|
|
//! including relay types, repository abstractions, and business rules.
|
|
|
|
|
|
|
|
|
|
/// Repository trait and error types for relay persistence.
|
|
|
|
|
pub mod repository;
|
|
|
|
|
/// Domain types for relay identification and control.
|
|
|
|
|
pub mod types;
|
2026-01-03 22:34:36 +01:00
|
|
|
/// Controller error types for relay operations.
|
|
|
|
|
pub mod controler;
|
2026-01-03 22:53:09 +01:00
|
|
|
/// Relay entity representing the relay aggregate.
|
|
|
|
|
pub mod entity;
|