moodist/src-tauri/src/lib.rs
Mert Sefa AKGUN 9e7529386d
chore: add bun commands and tauri scripts to README and include bun.lock
- Add `bun run` equivalents for npm scripts in README commands section
- Include Tauri development and build commands for desktop and mobile platforms
- Add `bun.lock` file for package locking with Bun package manager
2025-07-07 14:41:44 +03:00

16 lines
417 B
Rust

#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
.setup(|app| {
if cfg!(debug_assertions) {
app.handle().plugin(
tauri_plugin_log::Builder::default()
.level(log::LevelFilter::Info)
.build(),
)?;
}
Ok(())
})
.run(tauri::generate_context!())
.expect("error while running tauri application");
}