Skip to content

Commit

Permalink
cargo update
Browse files Browse the repository at this point in the history
  • Loading branch information
CheatCod committed May 22, 2023
1 parent e023793 commit 6d731c2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ async fn get_owner_jwt(state: tauri::State<'_, AppState>) -> Result<JwtToken, ()

#[tokio::main]
async fn main() {
let (core_fut, app_state, _guard) = lodestone_core::run().await;
let (core_fut, app_state, _guard) = lodestone_core::run(lodestone_core::Args {
is_cli: false,
is_desktop: true,
lodestone_path: None,
})
.await;
tokio::spawn(async {
core_fut.await;
println!("Core has exited");
Expand Down

0 comments on commit 6d731c2

Please sign in to comment.