Jacek Kowalski
2012-09-16 d8d9ecd00a4d9e972c87e719df988941fcad3e9e
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);
}
?>