Jacek Kowalski
2012-07-13 59898a04e959a8bda92440ef98f18f04306eb86f
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);
}
?>