rust-irc/examples/simple.rs

29 lines
801 B
Rust
Raw Normal View History

2019-08-27 15:05:51 +02:00
use futures::prelude::*;
2015-02-23 03:22:33 +01:00
use irc::client::prelude::*;
2019-08-27 15:05:51 +02:00
#[tokio::main]
async fn main() -> irc::error::Result<()> {
let config = Config {
2017-06-19 19:46:01 +02:00
nickname: Some("pickles".to_owned()),
alt_nicks: Some(vec!["bananas".to_owned(), "apples".to_owned()]),
server: Some("irc.mozilla.org".to_owned()),
channels: Some(vec!["#rust-spam".to_owned()]),
2017-06-19 19:59:26 +02:00
..Default::default()
};
2019-08-27 15:05:51 +02:00
let mut client = Client::from_config(config).await?;
client.identify()?;
let mut stream = client.stream()?;
loop {
let message = stream.select_next_some().await?;
2018-01-28 02:00:04 +01:00
if let Command::PRIVMSG(ref target, ref msg) = message.command {
if msg.contains("pickles") {
client.send_privmsg(target, "Hi!").unwrap();
2017-06-19 19:59:26 +02:00
}
}
2019-08-27 15:05:51 +02:00
}
}