| Crates.io | loco-twitch |
| lib.rs | loco-twitch |
| version | 0.1.1 |
| created_at | 2022-06-06 19:37:25.439137+00 |
| updated_at | 2022-06-06 19:43:07.541849+00 |
| description | Synchronous IRC Twitch Client |
| homepage | |
| repository | |
| max_upload_size | |
| id | 600939 |
| size | 12,595 |
Loco Twitch is a Synchronous IRC client with focus on Twitch IRC chat.
Usage:
[dependencies]
loco-twitch = "0.1.0"
fn main() {
let loco_config = LocoConfig::new(oauth, nickname, channel_to_join);
let mut loco_connection = LocoConnection::new(loco_config).unwrap();
while let Some(irc) = loco_connection.next() {
//do something with IRC
}
}