Upload files to "/"

This commit is contained in:
2025-12-22 15:13:52 +00:00
parent 6015ca963f
commit 0e53a7b269
264 changed files with 24582 additions and 3 deletions

14
commands.rs Normal file
View File

@@ -0,0 +1,14 @@
#[tauri::command(rename_all = "snake_case")]
pub fn validate_license(_license: String) -> bool {
return true;
}
#[tauri::command(rename_all = "snake_case")]
pub fn validate_username(_username: String) -> bool {
return true;
}
#[tauri::command(rename_all = "snake_case")]
pub fn get_app_version() -> String {
env!("CARGO_PKG_VERSION").to_string()
}