diff options
| author | Nathan Perry <avaglir@gmail.com> | 2018-04-06 19:22:55 -0400 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2018-04-06 19:22:55 -0400 |
| commit | d6bea61fa917d257219a43386c88a4f04cf82408 (patch) | |
| tree | c008923ffd1a934a4d295dddb9f5557a0e96ab4f /src/main.rs | |
| parent | d209da7a02887f433bfdd44f9b225179bdbb7b75 (diff) | |
database alteration in-flight
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 551449b..80ed991 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,6 +14,8 @@ extern crate typemap; extern crate url; extern crate rand; extern crate either; +extern crate reqwest; +extern crate sha1; use commands::register_commands; use dotenv::dotenv; @@ -127,6 +129,8 @@ fn main() { const MIN_RUN_DURATION: Duration = Duration::from_secs(120); + info!("starting"); + dotenv().ok(); use fern::colors::{Color, ColoredLevelConfig}; |
