mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-06-14 11:42:02 +08:00
12 lines
176 B
Rust
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;
|