Files
dsserver/plugin/admin/app/controller/VideoController.php
T
zimoyin 13fd9c5f0a init
2026-04-06 20:48:32 +08:00

20 lines
265 B
PHP

<?php
namespace plugin\admin\app\controller;
use support\Response;
/**
* 视频监控(占位)
*/
class VideoController extends Base
{
/**
* 浏览
*/
public function index(): Response
{
return raw_view('video/index');
}
}