remove test.rs

docs: update readme

remove test.rs
This commit is contained in:
notohh 2024-06-16 07:35:35 -04:00
parent 30eb512aca
commit 4a689149fd
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 5 additions and 12 deletions

View file

@ -1,2 +1,6 @@
# botoh
<div align=center>
<h1>botoh</h1>
<img src="https://cdn.7tv.app/emote/62150028180be49d725bf885/4x.webp" />
</div>

View file

@ -1,3 +1,2 @@
pub mod lastfm;
pub mod ping;
pub mod test;

View file

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