Skip to content

Commit

Permalink
chore: fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioRibera committed May 8, 2024
1 parent c3e9684 commit 9962d85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use axum::middleware::Next;
use axum::response::Response;
use axum::{middleware, Router, ServiceExt};
use events::daily_challenge::run_daily_challenge;
use events::send_message::send_message;
use serenity::http::Http;
use serenity::prelude::Context;
use serenity::Client;
Expand All @@ -24,7 +25,7 @@ extern crate litcrypt2;

use_litcrypt!();

static BOT_API_KEY: Lazy<String> = Lazy::new(|| lc!(env!("BOT_API_KEY")));
static BOT_API_KEY: Lazy<String> = Lazy::new(|| lc!(env!("BOT_APIKEY")));

pub struct CustomService {
discord_bot: Client,
Expand Down

0 comments on commit 9962d85

Please sign in to comment.