style: cargo fmt
This commit is contained in:
parent
e8b8b49643
commit
e8a9857e19
13 changed files with 87 additions and 41 deletions
|
@ -9,6 +9,7 @@ use uuid::Uuid;
|
|||
|
||||
mod channel;
|
||||
mod email_token;
|
||||
mod friends;
|
||||
mod guild;
|
||||
mod invite;
|
||||
mod me;
|
||||
|
@ -17,10 +18,11 @@ mod message;
|
|||
mod password_reset_token;
|
||||
mod role;
|
||||
mod user;
|
||||
mod friends;
|
||||
|
||||
pub use channel::Channel;
|
||||
pub use email_token::EmailToken;
|
||||
pub use friends::Friend;
|
||||
pub use friends::FriendRequest;
|
||||
pub use guild::Guild;
|
||||
pub use invite::Invite;
|
||||
pub use me::Me;
|
||||
|
@ -30,8 +32,6 @@ pub use password_reset_token::PasswordResetToken;
|
|||
pub use role::Permissions;
|
||||
pub use role::Role;
|
||||
pub use user::User;
|
||||
pub use friends::Friend;
|
||||
pub use friends::FriendRequest;
|
||||
|
||||
use crate::error::Error;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue