summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2018-08-13 19:31:24 -0400
committerNathan Perry <avaglir@gmail.com>2018-08-13 19:31:24 -0400
commita064941bd542a4d66ac1452bd876fef91b0bf87f (patch)
treec857174d50ef45b47bd2c0365c72900c962ec0d9 /src/main.rs
parent56bf3db2ff27c3d1ee9742a8153b91246383fd84 (diff)
update deps, prep for move to 2018 edition
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
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;