cloudlog/application/models/Lotw.php

16 lines
202 B
PHP
Raw Normal View History

2014-03-03 17:28:33 +00:00
<?php
class LOTW extends CI_Model {
function __construct()
{
// Call the Model constructor
parent::__construct();
}
function empty_table($table) {
$this->db->empty_table($table);
}
}
?>