13 lines
232 B
Rust
13 lines
232 B
Rust
extern crate wee_alloc;
|
|
|
|
mod app;
|
|
mod loader;
|
|
mod gpx;
|
|
|
|
// Use `wee_alloc` as the global allocator.
|
|
#[global_allocator]
|
|
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
|
|
|
|
fn main() {
|
|
yew::start_app::<app::App>();
|
|
}
|