Jacek Kowalski
2012-06-25 847d7cb0adee736f1a7f7f18fea514ce7babd614
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);
}
?>