aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ed6dcb6..59898e6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -51,14 +51,6 @@ impl Bot {
config.settings.wa_api_key = v
};
- match std::env::var("CATINATOR_WA_API_KEY") {
- Ok(var) => {
- info!("using wa api key from env var");
- config.settings.wa_api_key = var
- }
- Err(_) => (),
- }
-
let irc_client = Client::from_config(config.clone().into()).await?;
Ok(Bot { irc_client, config })
IMax Audron-32/+69 2021-06-05remove tanka vendoringMax Audron-27651/+0 2021-05-26Release 1.0.1Max Audron-3/+3 2021-05-26fix log breaking once buffer fullMax Audron-2/+33 the log_msg function was poping the newest message and replacing it with the newest message, it should be poping the oldest messages. 2021-05-16add deployment stuffMax Audron-6/+27786 2021-05-15add container buildMax Audron-2/+35