diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index ff5ca24..7bc37ec 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ extern crate mime_guess; extern crate regex; extern crate clap; -use commands::register_commands; +use self::commands::register_commands; use dotenv::dotenv; use serenity::framework::standard::help_commands; use serenity::framework::StandardFramework; @@ -32,7 +32,7 @@ use std::time::{Duration, Instant}; use failure::Error; -pub use util::*; +pub use self::util::*; #[cfg(feature = "diesel")] #[macro_use] extern crate diesel; |
