summaryrefslogtreecommitdiff
path: root/src/http/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/mod.rs')
-rw-r--r--src/http/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/mod.rs b/src/http/mod.rs
index 0f16852..dde769c 100644
--- a/src/http/mod.rs
+++ b/src/http/mod.rs
@@ -1,4 +1,4 @@
-use eyre::Result;
+use anyhow::Result;
use log::trace;
use serde::de::DeserializeOwned;
@@ -19,7 +19,7 @@ impl Ext for Client {
fn default() -> Self {
reqwest::ClientBuilder::new()
.user_agent(format!(
- "teawie-bot/{}",
+ "chill-discord-bot/{}",
option_env!("CARGO_PKG_VERSION").unwrap_or("development")
))
.build()