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; -}