diff options
| author | Nathan Perry <np@nathanperry.dev> | 2019-11-17 22:51:59 -0500 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2019-11-17 22:51:59 -0500 |
| commit | 8b2ccf363ac6894c21e256844948c8327645f0db (patch) | |
| tree | f6742f2d7905613b8c0404bba46e237f984a8da2 /src/util.rs | |
| parent | 2a38c282dd57c2051a568549d62c80d6036e8920 (diff) | |
mostly fixed
Diffstat (limited to 'src/util.rs')
| -rw-r--r-- | src/util.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.rs b/src/util.rs index 1e478d3..eb38d9c 100644 --- a/src/util.rs +++ b/src/util.rs @@ -3,6 +3,7 @@ use std::{ str::FromStr,
};
+use dotenv;
use serenity::{
client::Context,
model::{
@@ -15,6 +16,8 @@ use serenity::{ };
use url::Url;
+use lazy_static::lazy_static;
+
use crate::{
audio::PlayQueue,
Result,
|
