Added contesting controller the start of #347

这个提交包含在:
Peter Goodhall 2019-09-11 17:38:09 +01:00
父节点 4e618d42a2
当前提交 5412fcb3ac

查看文件

@ -0,0 +1,16 @@
<?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';
}
}