Files
sta/backend/src/infrastructure/persistence/mod.rs

8 lines
278 B
Rust
Raw Normal View History

//! Persistence layer implementations.
//!
//! This module contains the concrete implementations of repository traits
//! for data persistence, including SQLite-based storage for relay labels.
/// `SQLite` repository implementation for relay labels.
pub mod sqlite_repository;