subrepo: subdir: "apps/aquatic" merged: "b139e39f" upstream: origin: "https://github.com/greatest-ape/aquatic" branch: "master" commit: "b139e39f" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
16 lines
366 B
Rust
16 lines
366 B
Rust
use aquatic_common::cli::run_app_with_cli_and_config;
|
|
use aquatic_http::config::Config;
|
|
|
|
#[cfg(feature = "mimalloc")]
|
|
#[global_allocator]
|
|
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
fn main() {
|
|
run_app_with_cli_and_config::<Config>(
|
|
aquatic_http::APP_NAME,
|
|
aquatic_http::APP_VERSION,
|
|
aquatic_http::run,
|
|
None,
|
|
)
|
|
}
|