feat(queue & game): queue and library UIs

This commit is contained in:
DecDuck
2024-12-17 20:29:54 +11:00
parent 9bbf463774
commit b5b5c68b00
12 changed files with 255 additions and 26 deletions
+4 -1
View File
@@ -176,7 +176,10 @@ fn fetch_game_logic(
}
#[tauri::command]
pub fn fetch_game(id: String, app: tauri::AppHandle) -> Result<FetchGameStruct, String> {
pub fn fetch_game(
id: String,
app: tauri::AppHandle,
) -> Result<FetchGameStruct, String> {
let result = fetch_game_logic(id, app);
if result.is_err() {