mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
implement permanent storage for profile history
This commit is contained in:
parent
7803aa1c44
commit
a6107bf1bb
8 changed files with 310 additions and 73 deletions
|
|
@ -14,9 +14,12 @@ fn main() -> ExitCode {
|
|||
}
|
||||
|
||||
match Profile::init() {
|
||||
Ok(profile) => match App::build(profile).run() {
|
||||
Ok(app) => return app,
|
||||
Err(e) => eprintln!("Failed to initialize application: {e}"),
|
||||
Ok(profile) => match App::build(profile) {
|
||||
Ok(app) => match app.run() {
|
||||
Ok(run) => return run,
|
||||
Err(e) => eprintln!("Failed to run application: {e}"),
|
||||
},
|
||||
Err(e) => eprintln!("Failed to build application: {e}"),
|
||||
},
|
||||
Err(e) => eprintln!("Failed to initialize profile: {e}"),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue