diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 20:47:34 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 20:47:34 +0200 |
commit | 9d3f82e13a73998f508ba65ef4076fb79982b13c (patch) | |
tree | 7b814e6f585caeb16a9f703396580cd87ccdb208 /src-tauri | |
parent | 294bda0a85eb99d9975ffee3c7896da4f760a73f (diff) | |
download | FlightCore-9d3f82e13a73998f508ba65ef4076fb79982b13c.tar.gz FlightCore-9d3f82e13a73998f508ba65ef4076fb79982b13c.zip |
Auto-format
Diffstat (limited to 'src-tauri')
-rw-r--r-- | src-tauri/src/main.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 4244e364..09123040 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -222,5 +222,9 @@ fn launch_northstar(game_install: GameInstall) -> Result<String, String> { return Ok("Launched game".to_string()); } - Err(format!("Not yet implemented for {:?} on {}", game_install.install_type, get_host_os())) + Err(format!( + "Not yet implemented for {:?} on {}", + game_install.install_type, + get_host_os() + )) } |