Fix block user route, send correct user struct.

Add route for fetching members.
Cargo fmt on accident.
This commit is contained in:
Paul
2021-05-14 22:29:43 +01:00
parent cc0307f702
commit 6cc92b877e
19 changed files with 184 additions and 133 deletions

View File

@@ -1,13 +1,13 @@
mod server;
mod autumn;
mod january;
mod channel;
mod january;
mod message;
mod server;
mod user;
pub use january::*;
pub use autumn::*;
pub use channel::*;
pub use server::*;
pub use january::*;
pub use message::*;
pub use server::*;
pub use user::*;