11 lines
136 B
Rust
11 lines
136 B
Rust
#![deny(rust_2018_idioms)]
|
|
mod app;
|
|
mod db;
|
|
mod input;
|
|
mod ui;
|
|
|
|
pub use app::*;
|
|
pub use db::*;
|
|
pub use input::handle;
|
|
pub use ui::draw;
|