Jacek Kowalski
2012-08-29 9b2b4aae8c259d90b13c5843e75076090f7e79bc
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);
}
?>