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