http_private: add config, launch with cli helpers

This commit is contained in:
Joakim Frostegård 2022-04-02 14:35:40 +02:00
parent 6e97bff93f
commit 088daa72ff
8 changed files with 200 additions and 30 deletions

View file

@ -0,0 +1,5 @@
use crate::config::Config;
pub fn run_request_worker(config: Config) -> anyhow::Result<()> {
Ok(())
}