Update custom consumption dependencies

This commit is contained in:
2024-09-23 18:55:10 +02:00
parent fa431857ee
commit d98be00a40
3 changed files with 74 additions and 105 deletions

View File

@ -11,7 +11,7 @@ fn main() {
eframe::run_native(
"Custom consumption",
options,
Box::new(|_cc| Box::<MyApp>::default()),
Box::new(|_cc| Ok(Box::<MyApp>::default())),
)
.unwrap()
}