mod.rs

1use super::*;
2
3mod app;
4mod event;
5
6pub fn app() -> impl App {
7    app::App::default()
8}