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.
19 lines
318 B
19 lines
318 B
<?php
|
|
|
|
namespace app\admin\controller\liveroom;
|
|
|
|
use app\common\controller\AdminController;
|
|
use think\App;
|
|
use app\admin\model\Task as TaskModel;
|
|
|
|
class Task extends AdminController
|
|
{
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = new TaskModel();
|
|
}
|
|
|
|
|
|
}
|
|
|