Files
FHC-Core/application/core/APIv1_Controller.php
T
2016-10-19 14:49:54 +02:00

14 lines
264 B
PHP

<?php
require_once APPPATH . '/libraries/REST_Controller.php';
class APIv1_Controller extends REST_Controller
{
function __construct()
{
parent::__construct();
// Loads return messages
$this->load->helper('Message');
}
}