Add HTTP client and login support

This commit is contained in:
Elias Projahn 2020-11-14 22:32:21 +01:00
parent d20d80d1ac
commit ea3bd35ffd
16 changed files with 832 additions and 25 deletions

7
src/backend/mod.rs Normal file
View file

@ -0,0 +1,7 @@
pub mod backend;
pub use backend::*;
pub mod client;
pub use client::*;
mod secure;