diff options
| author | seth <[email protected]> | 2024-02-18 18:30:42 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-18 18:38:30 -0500 |
| commit | c6446aa74006ab73059e316917791c5230d1e897 (patch) | |
| tree | d9d74191a7f220a275a6fb1341bd894ba3f2372f /src/commands/moderation | |
| parent | db362aefe343e2cb27d6c01c89464b0a8100b295 (diff) | |
use newer eyre directly
Diffstat (limited to 'src/commands/moderation')
| -rw-r--r-- | src/commands/moderation/clear.rs | 2 | ||||
| -rw-r--r-- | src/commands/moderation/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/moderation/clear.rs b/src/commands/moderation/clear.rs index 677dc14..bfc9c38 100644 --- a/src/commands/moderation/clear.rs +++ b/src/commands/moderation/clear.rs @@ -1,6 +1,6 @@ use crate::Context; -use color_eyre::eyre::{Context as _, Result}; +use eyre::{Context as _, Result}; use log::debug; use poise::serenity_prelude::futures::{StreamExt, TryStreamExt}; diff --git a/src/commands/moderation/mod.rs b/src/commands/moderation/mod.rs index 218ad16..5a8cd08 100644 --- a/src/commands/moderation/mod.rs +++ b/src/commands/moderation/mod.rs @@ -1,6 +1,6 @@ use crate::Data; -use color_eyre::eyre::Report; +use eyre::Report; use poise::Command; mod clear; |
