gpx-web-utils/src/main.rs
2021-12-08 21:16:33 -07:00

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>();
}