提交代码

This commit is contained in:
liu
2026-01-29 18:26:02 +08:00
parent 981b4ecf42
commit 7531b6c466
47 changed files with 7257 additions and 16 deletions

View File

@@ -0,0 +1,18 @@
import request from './request';
export interface AggregateRequest {
srcDir: string;
dstDir: string;
mode: 'copy' | 'move';
}
export interface AggregateResponse {
taskId: string;
}
/**
* 启动音频文件汇聚任务
*/
export function startAggregate(params: AggregateRequest): Promise<AggregateResponse> {
return request.post('/api/aggregate/start', params);
}