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