mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
14 lines
No EOL
305 B
Rust
14 lines
No EOL
305 B
Rust
use aquatic_cli_helpers::run_app_with_cli_and_config;
|
|
use aquatic_http::config::Config;
|
|
|
|
|
|
#[global_allocator]
|
|
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
|
|
fn main(){
|
|
run_app_with_cli_and_config::<Config>(
|
|
"aquatic: BitTorrent (HTTP/TLS) tracker",
|
|
aquatic_http::run
|
|
)
|
|
} |