feat: 添加视频信息导出接口

This commit is contained in:
2025-02-20 15:46:41 +08:00
parent a93d44cbaa
commit 8cd8f594f3
3 changed files with 105 additions and 0 deletions

View File

@@ -61,6 +61,9 @@ Route::group('v1', function () {
// 视频信息设置排序值
Route::post('sort/:id', 'Video/sort');
// 视频信息导出
Route::get('export', 'Video/export');
// 视频信息删除
Route::delete('delete/:id', 'Video/delete');
});