loco-twitch

Crates.ioloco-twitch
lib.rsloco-twitch
version0.1.1
sourcesrc
created_at2022-06-06 19:37:25.439137
updated_at2022-06-06 19:43:07.541849
descriptionSynchronous IRC Twitch Client
homepage
repository
max_upload_size
id600939
size12,595
Paulo G.J. Bezerra (pgjbz)

documentation

README

Loco Twitch (WIP)

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
    }
}
Commit count: 0

cargo fmt