mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-23 15:47:45 +00:00
6 lines
117 B
Rust
6 lines
117 B
Rust
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
#[derive(Serialize, Deserialize)]
|
||
|
pub struct Config {
|
||
|
pub gate_open: bool
|
||
|
}
|