Jacek Kowalski
2012-06-30 317fa63aeb4468bfce57beb81840ce753c5b22e2
1
2
3
4
5
6
7
8
9
10
11
<?php
class BotModuleException extends Exception {}
 
interface BotModule {
}
 
interface BotModuleInit {
    function register();
    function help($params = NULL);
}
?>