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