mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-04-01 02:05:30 +00:00
14 lines
No EOL
294 B
Rust
14 lines
No EOL
294 B
Rust
use aquatic_udp;
|
|
use aquatic_cli_helpers;
|
|
|
|
|
|
#[global_allocator]
|
|
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
|
|
fn main(){
|
|
aquatic_cli_helpers::run_app_with_cli_and_config::<aquatic_udp::config::Config>(
|
|
"aquatic: udp bittorrent tracker",
|
|
aquatic_udp::run,
|
|
)
|
|
} |