You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
308 B
18 lines
308 B
<?php
|
|
|
|
namespace app\admin\controller\liveroom;
|
|
|
|
use app\admin\model\LiveRoom;
|
|
use app\common\controller\AdminController;
|
|
use think\App;
|
|
|
|
class Index extends AdminController
|
|
{
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = new LiveRoom();
|
|
}
|
|
|
|
}
|
|
|