<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Base API Class - used for all API calls
*/
class API_Controller extends MY_Controller {
/**
* Constructor
*/
function __construct()
{
parent::__construct();
}
}