Modular platforms (#241)

This commit is contained in:
Philip Kristoffersen
2022-10-02 21:13:31 +02:00
committed by GitHub
parent d6773c7adb
commit dcbf77b610
94 changed files with 2188 additions and 1750 deletions
+6 -14
View File
@@ -1,25 +1,16 @@
mod amazon;
mod config;
mod egs;
mod flatpak;
mod gog;
#[cfg(target_family = "unix")]
mod heroic;
mod itch;
mod legendary;
mod lutris;
mod migration;
mod origin;
mod platform;
mod platforms;
mod settings;
mod steam;
mod steamgriddb;
mod sync;
mod ui;
mod uplay;
mod bottles;
fn main() {
use color_eyre::eyre::Result;
fn main() -> Result<()>{
color_eyre::install()?;
ensure_config_folder();
migration::migrate_config();
@@ -29,6 +20,7 @@ fn main() {
} else {
ui::run_ui(args);
}
Ok(())
}
fn ensure_config_folder() {