mirror of
https://github.com/sadoyan/aralez.git
synced 2026-04-30 06:48:37 +08:00
12 lines
200 B
Rust
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();
|
|
}
|