ZipComp: First Compute Request * ZipCmd <-- ZipComp: First Compute Response * * ZipCmd -> ZipComp: Second Compute Request * ZipCmd <-- ZipComp: Second Compute Response * * @enduml * --> * * @return some value on success. */ if (! defined('BASEPATH')) exit('No direct script access allowed'); /** * @class Rest_server * @brief Rest Server Controller * * A more detailed class description. */ class Rest_server extends FHC_Controller { /** * Index Method for default function. * * @return void * */ public function index() { $this->load->helper('url'); $this->load->view('rest_server'); } }