4个版本
0.2.0 | 2020年10月24日 |
---|---|
0.1.2 | 2020年10月22日 |
0.1.1 | 2020年10月22日 |
0.1.0 | 2020年10月22日 |
#41 in #twitch
8KB
124 行
连接到并允许与Twitch消息接口进行通信
基本用法
use madhouse_steve_tmi::Tmi;
let oauth_token = String::from("oauth:some_token_here");
let nick = String::from("MadSteveBot");
let rooms = vec![String::from("MadhouseSteve")];
let mut tmi = Tmi::new(oauth_token, nick, rooms);
let (join_handle, receiver) = tmi.start();
loop {
let msg = receiver.recv();
if msg.is_err() {
break;
}
let msg = msg.unwrap();
// Do something with the message here
}
join_handle.join().unwrap();