Get background file name

This commit is contained in:
KingRainbow44
2022-05-14 02:18:20 -04:00
parent d7cadc1603
commit 73138cb686
8 changed files with 19 additions and 14 deletions

8
src-tauri/src/structs.rs Normal file
View File

@@ -0,0 +1,8 @@
#![allow(non_snake_case)]
use serde::Deserialize;
#[derive(Deserialize)]
pub(crate) struct APIQuery {
pub backgroundFile: String,
}