Files
sta/backend/src/domain/relay/mod.rs

14 lines
469 B
Rust
Raw Normal View History

//! Relay domain module.
//!
//! This module contains the core domain logic for relay control and management,
//! including relay types, repository abstractions, and business rules.
2026-01-03 23:57:50 +01:00
/// Controller error types for relay operations.
pub mod controller;
/// Relay entity representing the relay aggregate.
pub mod entity;
/// Repository trait and error types for relay persistence.
pub mod repository;
/// Domain types for relay identification and control.
pub mod types;