mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 14:03:42 +02:00
Add settings for EGS and SteamgridDB
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
mod legendary_game;
|
||||
mod get_legendary_games;
|
||||
mod settings;
|
||||
|
||||
pub use get_legendary_games::*;
|
||||
pub use legendary_game::*;
|
||||
pub use legendary_game::*;
|
||||
pub use settings::*;
|
||||
@@ -0,0 +1,16 @@
|
||||
use serde::Deserialize;
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
pub struct LegendarySettings {
|
||||
pub enabled: bool,
|
||||
pub executable: Option<String>,
|
||||
}
|
||||
|
||||
impl Default for LegendarySettings {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
enabled: true,
|
||||
executable: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user