refactor: Created file settings.rs

Add constant values here to have a central management point for any relevant constants

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2024-11-11 09:11:46 +11:00
parent 4fc13a1c8f
commit b47b7ea935
3 changed files with 3 additions and 5 deletions
+1 -2
View File
@@ -4,6 +4,7 @@ mod downloads;
mod library;
mod p2p;
mod remote;
mod settings;
#[cfg(test)]
mod tests;
@@ -26,8 +27,6 @@ use std::{
};
use tauri_plugin_deep_link::DeepLinkExt;
pub const GAME_PAUSE_CHECK_INTERVAL: Duration = Duration::from_secs(1);
#[derive(Clone, Copy, Serialize)]
pub enum AppStatus {
NotConfigured,