pub trait App { // Required method fn run(&mut self, ctx: &mut AppCtx<'_>) -> AppResult; }
Blocking app entry point.
Executes the application logic, taking in system context resources.