lib.rs (375B)
1 #![forbid(unsafe_code)] 2 3 mod accounts; 4 mod app; 5 mod menus; 6 pub mod pack_day_host_handoff; 7 pub mod pack_day_print; 8 mod remote_signer; 9 mod runtime; 10 #[cfg(test)] 11 mod source_guards; 12 mod window; 13 14 pub use accounts::DesktopLocalIdentityImportRequest; 15 pub use app::AppLaunchError; 16 pub use runtime::DesktopAppRuntime; 17 18 pub fn run() -> Result<(), AppLaunchError> { 19 app::launch() 20 }