implement permanent storage for profile history

This commit is contained in:
yggverse 2025-03-12 16:16:16 +02:00
parent 7803aa1c44
commit a6107bf1bb
8 changed files with 310 additions and 73 deletions

View file

@ -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}"),
}