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