feat: use digest auth (#14)

* feat: switch to digest auth

* implement digest auth

* cargo fmt

* no lock
This commit is contained in:
sigoden
2022-06-05 00:09:21 +08:00
committed by GitHub
parent 05155aa532
commit 2f40313a54
7 changed files with 316 additions and 24 deletions

View File

@@ -1,4 +1,5 @@
mod args;
mod auth;
mod server;
pub type BoxResult<T> = Result<T, Box<dyn std::error::Error>>;