ws: use idiomatic folder structure

This commit is contained in:
Joakim Frostegård 2021-11-27 18:19:08 +01:00
parent aa3253fcd6
commit d20e57d861
17 changed files with 0 additions and 2 deletions

9
aquatic_ws/src/main.rs Normal file
View file

@ -0,0 +1,9 @@
use aquatic_cli_helpers::run_app_with_cli_and_config;
use aquatic_ws::config::Config;
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
fn main() {
run_app_with_cli_and_config::<Config>(aquatic_ws::APP_NAME, aquatic_ws::run, None)
}