Added kick command.

This commit is contained in:
Aaron Weiss 2014-10-26 23:29:31 -04:00
parent d719cc006b
commit f0bd2b99f1
2 changed files with 13 additions and 0 deletions

View file

@ -18,6 +18,7 @@ pub trait Bot {
fn send_topic(&self, chan: &str, topic: &str) -> IoResult<()>;
fn send_invite(&self, person: &str, chan: &str) -> IoResult<()>;
fn send_privmsg(&self, chan: &str, msg: &str) -> IoResult<()>;
fn send_kick(&self, chan: &str, user: &str, msg: &str) -> IoResult<()>;
fn identify(&self) -> IoResult<()>;
fn output(&mut self) -> IoResult<()>;
fn config(&self) -> &Config;