From 4a689149fd9ca8bea15058cdd7741517633d19b4 Mon Sep 17 00:00:00 2001 From: notohh Date: Sun, 16 Jun 2024 07:35:35 -0400 Subject: [PATCH] remove test.rs docs: update readme remove test.rs --- README.md | 6 +++++- src/commands/mod.rs | 1 - src/commands/test.rs | 10 ---------- 3 files changed, 5 insertions(+), 12 deletions(-) delete mode 100644 src/commands/test.rs diff --git a/README.md b/README.md index 0f85e14..3a19357 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ -# botoh +
+

botoh

+ +
+ diff --git a/src/commands/mod.rs b/src/commands/mod.rs index f88abee..2d56aed 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -1,3 +1,2 @@ pub mod lastfm; pub mod ping; -pub mod test; diff --git a/src/commands/test.rs b/src/commands/test.rs deleted file mode 100644 index cfcfab4..0000000 --- a/src/commands/test.rs +++ /dev/null @@ -1,10 +0,0 @@ -use crate::client::TwitchClient; - -use twitch_irc::message::PrivmsgMessage; - -pub async fn test_command(m: &PrivmsgMessage, c: &TwitchClient) { - let _message = c - .twitch_client - .say(m.channel_login.to_owned(), "test".to_owned()) - .await; -}