mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Create files for configuration
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
mod settings;
|
||||
pub use settings::*;
|
||||
@@ -0,0 +1,16 @@
|
||||
use serde::Deserialize;
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
pub struct SteamGridDb {
|
||||
pub enabled: bool,
|
||||
pub auth_key: Option<String>,
|
||||
}
|
||||
|
||||
impl Default for SteamGridDb {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
enabled: true,
|
||||
auth_key: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user