Reorganize use statements

This commit is contained in:
Bat
2018-05-19 08:39:59 +01:00
parent aa233abb41
commit b55622f2b1
23 changed files with 173 additions and 130 deletions
+1 -2
View File
@@ -1,8 +1,7 @@
use rocket_contrib::Template;
use db_conn::DbConn;
use models::notifications::Notification;
use models::users::User;
use models::{notifications::Notification, users::User};
#[get("/notifications")]
fn notifications(conn: DbConn, user: User) -> Template {