1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-23 15:47:45 +00:00
kawari/src/config.rs

14 lines
234 B
Rust
Raw Normal View History

2023-10-05 12:09:05 -04:00
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize)]
pub struct Config {
pub gate_open: bool
}
impl Default for Config {
fn default() -> Self {
Self {
gate_open: false,
}
}
2023-10-05 12:09:05 -04:00
}