PHP_SMART_HOME_V3/app/api/RoomsApi.php

14 lines
184 B
PHP
Raw Normal View History

2020-05-12 17:41:46 +00:00
<?php
class RoomsApi extends ApiController{
public function default(){
$this->requireAuth();
$response = [];
// TODO: process the request
$this->response($response);
}
}