Jacek Kowalski
2012-10-27 9edc681b6becc18dee6f519072eb3767cee9fc08
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);
}
?>