feat: 添加视频上传接口

This commit is contained in:
2025-02-19 16:33:36 +08:00
parent df0c545b90
commit 5c15fb83e1
7 changed files with 182 additions and 0 deletions

View File

@@ -29,6 +29,16 @@ return [
// 可见性
'visibility' => 'public',
],
'video' => [
// 磁盘类型
'type' => 'local',
// 磁盘路径
'root' => app()->getRootPath() . 'public/storage/videos',
// 磁盘路径对应的外部URL路径
'url' => '/storage/videos',
// 可见性
'visibility' => 'public',
],
// 更多的磁盘配置信息
],
];