mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
16 lines
247 B
PHP
16 lines
247 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||
|
|
|
||
|
|
|
||
|
|
/*
|
||
|
|
This controller will contain features for contesting
|
||
|
|
*/
|
||
|
|
|
||
|
|
class Contesting extends CI_Controller {
|
||
|
|
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
echo 'Functions to come';
|
||
|
|
}
|
||
|
|
}
|