mirror of
https://github.com/ivabus/gui
synced 2025-06-07 07:40:27 +03:00
better trigger change
This commit is contained in:
parent
2e3e1436e4
commit
84c3ce2b2d
2 changed files with 8 additions and 9 deletions
|
@ -1,15 +1,15 @@
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
all(not(debug_assertions), target_os = "windows"),
|
all(not(debug_assertions), target_os = "windows"),
|
||||||
windows_subsystem = "windows"
|
windows_subsystem = "windows"
|
||||||
)]
|
)]
|
||||||
|
|
||||||
mod handlers;
|
mod handlers;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
tauri::Builder::default()
|
tauri::Builder::default()
|
||||||
.invoke_handler(tauri::generate_handler![
|
.invoke_handler(tauri::generate_handler![
|
||||||
handlers::packages::install_package,
|
handlers::packages::install_package,
|
||||||
])
|
])
|
||||||
.run(tauri::generate_context!())
|
.run(tauri::generate_context!())
|
||||||
.expect("error while running tauri application");
|
.expect("error while running tauri application");
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,4 +13,3 @@
|
||||||
font-family: 'sono';
|
font-family: 'sono';
|
||||||
src: url('../static/fonts/Sono-Light.woff2');
|
src: url('../static/fonts/Sono-Light.woff2');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue