irc_lib 0.1.4

Simple IRC library with plugin support
Documentation
1
2
3
4
5
6
7
use crate::{Server, message::IrcMessage};

use std::fmt::Debug;

pub trait IrcPlugin: Debug + Send {
    fn message(&self, server: &Server, message: &IrcMessage);
}