15 lines
168 B
PHP
15 lines
168 B
PHP
<?php
|
|
|
|
class APIv1 extends Module
|
|
{
|
|
protected $request_method = 'GET';
|
|
|
|
public function __construct()
|
|
{
|
|
// Checks the request method
|
|
|
|
// Checks the key
|
|
}
|
|
}
|
|
|
|
?>
|