2026-01-01 17:35:58 +01:00
|
|
|
//! Persistence layer implementations.
|
|
|
|
|
//!
|
|
|
|
|
//! This module contains the concrete implementations of repository traits
|
|
|
|
|
//! for data persistence, including SQLite-based storage for relay labels.
|
|
|
|
|
|
2026-01-10 23:26:49 +01:00
|
|
|
/// Mock repository implementation for testing.
|
|
|
|
|
pub mod label_repository;
|
|
|
|
|
|
2026-01-01 17:35:58 +01:00
|
|
|
/// `SQLite` repository implementation for relay labels.
|
|
|
|
|
pub mod sqlite_repository;
|