blob: 473cab109675470a868a09afae7507711e56d9bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
use std::fmt;
use irc::client::prelude::*;
use irc::error::Error as IrcError;
pub trait Plugin: Send + Sync + fmt::Debug {
fn is_allowed(&self, server: &IrcServer, message: &Message) -> bool;
fn execute(&mut self, server: &IrcServer, message: &Message) -> Result<(), IrcError>;
}
#[macro_export]
macro_rules! register_plugin {
($t:ident) => {
#[derive(Debug)]
pub struct $t;
impl $t {
pub fn new() -> $t {
$t { }
}
}
};
($t:ident, $element: ident: $ty: ty) => {
#[derive(Debug)]
pub struct $t {
$element: $ty
}
impl $t {
pub fn new() -> $t {
$t { $element: <$ty>::new() }
}
}
};
}
|