Added contesting controller the start of #347

This commit is contained in:
Peter Goodhall
2019-09-11 17:38:09 +01:00
parent 4e618d42a2
commit 5412fcb3ac

View File

@@ -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';
}
}