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/format_msg.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/format_msg.rs')
| -rw-r--r-- | src/routes/format_msg.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/format_msg.rs b/src/routes/format_msg.rs index d7a6f05..83dbd8f 100644 --- a/src/routes/format_msg.rs +++ b/src/routes/format_msg.rs @@ -39,8 +39,8 @@ impl<T: Serialize> Responder for FormatMsg<T> { #[cfg(test)] mod tests { use super::*; - use routes::*; - use routes::tests::*; + use crate::routes::*; + use crate::routes::tests::*; use serde::ser::{Error, Serializer}; #[test] |
