18 lines
512 B
Rust
18 lines
512 B
Rust
mod home;
|
|
mod news;
|
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
pub fn run() {
|
|
tauri::Builder::default()
|
|
.plugin(tauri_plugin_opener::init())
|
|
// Registriert den Nostr-State
|
|
.manage(news::NewsState::default())
|
|
.invoke_handler(tauri::generate_handler![
|
|
home::fetch_nostr_posts,
|
|
news::save_openrouter_key,
|
|
news::fetch_ai_news,
|
|
])
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|