aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/repair_and_verify/mod.rs
blob: e99dcbfc2e9e0eaab70c274a2000903479a96b7b (plain)
1
2
3
4
5
6
7
8
9
/// Contains various functions to repair common issues and verifying installation

use app::GameInstall;

/// Verifies Titanfall2 game files
pub fn verify_game_files(game_install: GameInstall) -> Result<String, String> {
    dbg!(game_install);
    Err("TODO, not yet implemented".to_string())
}