10 lines
333 B
Rust
10 lines
333 B
Rust
|
|
//! 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;
|