[][src]Constant twitchchat::ANONYMOUS_LOGIN

pub const ANONYMOUS_LOGIN: (&str, &str);

An anonymous login.

You won't be able to send messages, but you can join channels and read messages

usage

let (nick, pass) = twitchchat::ANONYMOUS_LOGIN;
let _config = UserConfig::builder()
    .name(nick)
    .token(pass)
    .build()
    .unwrap();