Files
One-KVM/src/config/mod.rs
2026-05-18 22:44:59 +08:00

12 lines
176 B
Rust

mod schema;
mod store;
/// Configuration change event
#[derive(Debug, Clone)]
pub struct ConfigChange {
pub key: String,
}
pub use schema::*;
pub use store::ConfigStore;