summaryrefslogtreecommitdiff
path: root/src/utils.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.rs')
-rw-r--r--src/utils.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.rs b/src/utils.rs
index 1f8e4a7..9b642a7 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -1,4 +1,4 @@
-use crate::{colors, Context};
+use crate::{consts::Colors, Context};
use color_eyre::eyre::{eyre, Result};
use poise::serenity_prelude::{self as serenity, CreateEmbedAuthor, CreateEmbedFooter};
@@ -49,7 +49,7 @@ pub async fn send_url_as_embed(ctx: Context<'_>, url: String) -> Result<()> {
.title(title)
.image(&url)
.url(url)
- .color(colors::Colors::Blue);
+ .color(Colors::Blue);
let reply = CreateReply::default().embed(embed);
ctx.send(reply).await?;