main.rs 377 B

1234567891011121314
  1. // Copyright 2019-2021 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. #![cfg_attr(
  5. all(not(debug_assertions), target_os = "windows"),
  6. windows_subsystem = "windows"
  7. )]
  8. fn main() {
  9. tauri::Builder::default()
  10. .run(tauri::generate_context!())
  11. .expect("error while running tauri application");
  12. }