Jacek Kowalski
2012-08-27 1a5b215058b94af0a90df2c6c2f87960429e6aaf
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);
}
?>