summaryrefslogtreecommitdiffstats
path: root/app/model/auth.mod.php
blob: 9c356e22c1b1a134b7e82811e801a4363b281a8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

require_once "model/common.mod.php";

class AuthModel extends CommonModel
{
    /*
     * Default action
     */
    function deflt()
    {
    }
}

?>