style(downloads): Added GAME_PAUSE_CHECK_INTERVAL value

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2024-11-09 20:00:05 +11:00
parent 2c7b5fb47d
commit 8204795ba6
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -19,12 +19,15 @@ use log::info;
use remote::{gen_drop_url, use_remote};
use serde::{Deserialize, Serialize};
use std::sync::Arc;
use std::time::Duration;
use std::{
collections::HashMap,
sync::{LazyLock, Mutex},
};
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,