Clippy
This commit is contained in:
parent
0e43b286ef
commit
3a350af86c
1 changed files with 5 additions and 5 deletions
10
src/main.rs
10
src/main.rs
|
@ -3,17 +3,17 @@ mod data;
|
||||||
mod utils;
|
mod utils;
|
||||||
mod mongo;
|
mod mongo;
|
||||||
|
|
||||||
use std::any::Any;
|
|
||||||
use std::fmt::Display;
|
|
||||||
use std::hash::Hash;
|
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
use poise::FrameworkError;
|
|
||||||
use poise::serenity_prelude::GatewayIntents;
|
use poise::serenity_prelude::GatewayIntents;
|
||||||
use serenity::client::Context;
|
use serenity::client::Context;
|
||||||
use serenity::model::id::ChannelId;
|
use serenity::model::id::ChannelId;
|
||||||
use serenity::model::prelude::Activity;
|
use serenity::model::prelude::Activity;
|
||||||
use crate::commands::events::create_event_embeds;
|
use crate::commands::events::create_event_embeds;
|
||||||
use crate::data::{Data, Error};
|
use crate::data::{Data};
|
||||||
use crate::mongo::core::get_all_status_messages;
|
use crate::mongo::core::get_all_status_messages;
|
||||||
|
|
||||||
fn update_daily(ctx: Context) {
|
fn update_daily(ctx: Context) {
|
||||||
|
|
Loading…
Reference in a new issue