Updated unmaintained dependency

This commit is contained in:
2025-05-15 01:37:29 -05:00
parent 4e3b4ee234
commit 5e3bc7a6d8
3 changed files with 16 additions and 5 deletions

View File

@ -1,5 +1,5 @@
extern crate lastfm;
use dotenv::dotenv;
extern crate dotenvy;
use serenity::async_trait;
use serenity::model::channel::Message;
@ -119,7 +119,7 @@ impl EventHandler for Handler {
#[tokio::main]
async fn main() {
START.call_once(|| {
dotenv().ok();
dotenvy::dotenv().expect("Failed to load .env");
magick_wand_genesis();
});