Skip to content

Commit

Permalink
Merge pull request #257 from Lodestone-Team/dev
Browse files Browse the repository at this point in the history
cargo update
  • Loading branch information
CheatCod authored May 22, 2023
2 parents 8daaf07 + e0f9031 commit dc97dde
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 dc97dde

Please sign in to comment.