mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-04-01 02:05:30 +00:00
11 lines
287 B
Rust
11 lines
287 B
Rust
#[global_allocator]
|
|
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
fn main() {
|
|
aquatic_common::cli::run_app_with_cli_and_config::<aquatic_udp::config::Config>(
|
|
aquatic_udp::APP_NAME,
|
|
aquatic_udp::APP_VERSION,
|
|
aquatic_udp::run,
|
|
None,
|
|
)
|
|
}
|