mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 19:44:50 +00:00
feat: expect on app run
This commit is contained in:
parent
26e560b7c1
commit
de5fe1aa3f
1 changed files with 7 additions and 7 deletions
14
src/main.rs
14
src/main.rs
|
@ -1,17 +1,17 @@
|
|||
use iced::{Application, Settings};
|
||||
use ui::main_win::MainWin;
|
||||
|
||||
pub mod profile;
|
||||
pub mod runner;
|
||||
pub mod ui;
|
||||
pub mod builders;
|
||||
pub mod config;
|
||||
pub mod constants;
|
||||
pub mod file_utils;
|
||||
pub mod profiles;
|
||||
pub mod depcheck;
|
||||
pub mod dependencies;
|
||||
pub mod builders;
|
||||
pub mod file_utils;
|
||||
pub mod profile;
|
||||
pub mod profiles;
|
||||
pub mod runner;
|
||||
pub mod ui;
|
||||
|
||||
fn main() {
|
||||
MainWin::run(Settings::default());
|
||||
MainWin::run(Settings::default()).expect("Application encountered an error");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue