aquatic_http: split into mio and glommio modules

This commit is contained in:
Joakim Frostegård 2021-10-26 15:26:06 +02:00
parent 40eff52f1c
commit ad7e464788
12 changed files with 196 additions and 153 deletions

View file

@ -0,0 +1,10 @@
use glommio::prelude::*;
use crate::config::Config;
pub fn run(
config: Config,
) -> anyhow::Result<()> {
Ok(())
}