cargo fmt

This commit is contained in:
Joakim Frostegård 2022-03-24 16:34:13 +01:00
parent 34857910b0
commit 5ac5d20b6e
2 changed files with 12 additions and 2 deletions

View file

@ -5,5 +5,10 @@ use aquatic_http::config::Config;
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)
run_app_with_cli_and_config::<Config>(
aquatic_http::APP_NAME,
aquatic_http::APP_VERSION,
aquatic_http::run,
None,
)
}

View file

@ -5,5 +5,10 @@ use aquatic_ws::config::Config;
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
fn main() {
run_app_with_cli_and_config::<Config>(aquatic_ws::APP_NAME, aquatic_ws::APP_VERSION, aquatic_ws::run, None)
run_app_with_cli_and_config::<Config>(
aquatic_ws::APP_NAME,
aquatic_ws::APP_VERSION,
aquatic_ws::run,
None,
)
}