mirror of
https://github.com/lxsang/ant-http
synced 2025-01-06 21:28:21 +01:00
12 lines
201 B
PHP
12 lines
201 B
PHP
<?php
|
|
|
|
class BroadwayAPIHandler {
|
|
public static function broadway(Array $arguments) {
|
|
return Array(false, false);
|
|
}
|
|
}
|
|
|
|
API::AddHandler('broadway', Array('BroadwayAPIHandler', 'broadway'));
|
|
|
|
?>
|