mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
14 lines
241 B
Rust
14 lines
241 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Deserialize, Serialize, Clone)]
|
|
|
|
pub struct OriginSettings {
|
|
pub enabled: bool,
|
|
}
|
|
|
|
impl Default for OriginSettings {
|
|
fn default() -> Self {
|
|
Self { enabled: true }
|
|
}
|
|
}
|