Jacek Kowalski
2012-08-12 aea763de7a89979bd258917f678436d93d295161
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);
}
?>