aboutsummaryrefslogtreecommitdiff
path: root/src/bot.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.rs')
-rw-r--r--src/bot.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bot.rs b/src/bot.rs
index de31c73..0c44349 100644
--- a/src/bot.rs
+++ b/src/bot.rs
@@ -258,11 +258,11 @@ fn on_err(err: FrameworkError<PoiseData, anyhow::Error>) -> BoxFuture<()> {
} else {
return;
}
- },
+ }
Err(e) => {
error!("processing unrecognized message: {e}");
"BANIC".to_string()
- },
+ }
}
} else {
if let Err(e) = commands::meme::invoke::_meme(
@@ -270,7 +270,7 @@ fn on_err(err: FrameworkError<PoiseData, anyhow::Error>) -> BoxFuture<()> {
msg_content,
Default::default(),
)
- .await
+ .await
{
error!("producing meme for unrecognized: {e}");
"BANIC".to_string()
@@ -278,7 +278,7 @@ fn on_err(err: FrameworkError<PoiseData, anyhow::Error>) -> BoxFuture<()> {
return;
}
}
- },
+ }
_ => "BANIC".to_string(),
};
@@ -377,7 +377,7 @@ fn check(ctx: PoiseContext) -> BoxFuture<anyhow::Result<bool>> {
})
}
-fn before_handle<'fut>(ctx: PoiseContext<'fut>) -> Pin<Box<dyn Future<Output = ()> + Send + 'fut>> {
+fn before_handle<'fut>(ctx: PoiseContext<'fut>) -> Pin<Box<dyn Future<Output=()> + Send + 'fut>> {
debug!(
"got command '{}' from user '{}' ({})",
ctx.command().name,
@@ -397,7 +397,7 @@ fn after_handle(ctx: PoiseContext) -> BoxFuture<()> {
pub async fn run() -> anyhow::Result<()> {
#[cfg(all(windows, feature = "windows_autostart_postgres"))]
let started_pg =
- tokio::task::spawn_blocking(|| unsafe { crate::windows_util::ensure_postgres_started() })
+ tokio::task::spawn_blocking(|| unsafe { util::windows::ensure_postgres_started() })
.await??;
let token = &CONFIG.discord.auth.token;
@@ -431,7 +431,7 @@ pub async fn run() -> anyhow::Result<()> {
if started_pg {
log::info!("we started postgres, stopping it before shutdown");
- tokio::task::spawn_blocking(|| crate::windows_util::shutdown_postgres()).await??;
+ tokio::task::spawn_blocking(|| util::windows::shutdown_postgres()).await??;
}
}