Added a blank Clublog model

This commit is contained in:
Peter Goodhall
2019-06-19 14:16:35 +01:00
parent 754098f986
commit 5f1790e3d5

View File

@@ -0,0 +1,11 @@
<?php
class Clublog extends CI_Model {
function __construct()
{
parent::__construct();
}
}
?>