mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-04-01 10:15:31 +00:00
9 lines
271 B
Rust
9 lines
271 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_http::APP_NAME, aquatic_http::run, None)
|
|
}
|