Files
aralez/src/main.rs
2026-04-27 15:22:31 +02:00

12 lines
200 B
Rust

mod tls;
mod utils;
mod web;
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
// pub static A: CountingAllocator = CountingAllocator;
fn main() {
web::start::run();
}