PHP_SMART_HOME_V3/app/api/PluginsApi.php

13 lines
185 B
PHP
Raw Normal View History

2020-10-25 23:01:30 +00:00
<?php
class PluginsApi extends ApiController{
public function default(){
$this->requireAuth();
$response = [];
// TODO: process the request
$this->response($response);
}
}