diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2019-12-21 15:08:10 -0500 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2019-12-21 15:08:52 -0500 |
| commit | 909cf65c97ef2ec56090559293f6619dbd1e9f1f (patch) | |
| tree | 855b195db502f0451fabefcac39be8bd898a3629 /src/routes/mod.rs | |
| parent | 4117f797cec89927fe3363543b8c8b11a311b90c (diff) | |
| download | august-offensive-909cf65c97ef2ec56090559293f6619dbd1e9f1f.tar.gz august-offensive-909cf65c97ef2ec56090559293f6619dbd1e9f1f.tar.bz2 august-offensive-909cf65c97ef2ec56090559293f6619dbd1e9f1f.zip | |
Adopt Rust 2018 edition with idiomatic changes
Diffstat (limited to 'src/routes/mod.rs')
| -rw-r--r-- | src/routes/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/mod.rs b/src/routes/mod.rs index 759375d..ac11ad9 100644 --- a/src/routes/mod.rs +++ b/src/routes/mod.rs @@ -1,6 +1,6 @@ use actix_web::{web::{route, scope, Query}, HttpRequest, Result, Scope}; use actix_web::http::StatusCode; -use messages::*; +use crate::messages::*; use std::collections::HashMap; pub mod format_msg; |
