Blame view

app-ht/modules/production/Module.php 252 Bytes
ffc314f1   曹明   app-ht(build v0.0...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php namespace app\ht\modules\production;

/**
 * @author CM
 */
class Module extends \app\ht\modules\BaseModule
{
    public function init()
    {
        parent::init();

        $this->params['perm'] = require(__DIR__ . '/config/perm.php');
    }
}