diff options
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r-- | src-tauri/src/main.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index c3172ee8..26f138ba 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -16,6 +16,9 @@ use app::{ install_northstar, launch_northstar, linux_checks_librs, GameInstall, NorthstarMod, }; +mod github; +use github::release_notes::get_northstar_release_notes; + mod repair_and_verify; use repair_and_verify::{verify_game_files, disable_all_but_core}; @@ -91,6 +94,7 @@ fn main() { set_mod_enabled_status_caller, disable_all_but_core_caller, is_debug_mode, + get_northstar_release_notes, linux_checks, get_installed_mods_caller, ]) |