🔨 批量执行.

This commit is contained in:
lijiahangmax
2024-03-15 00:26:53 +08:00
parent 6bd2640af7
commit 8caf8de9f6
20 changed files with 106 additions and 57 deletions

View File

@@ -33,9 +33,9 @@ export interface ExecCommandResponse {
}
/**
* 执行命令
* 批量执行命令
*/
export function execCommand(request: ExecCommandRequest) {
export function batchExecCommand(request: ExecCommandRequest) {
return axios.post<ExecCommandResponse>('/asset/exec/exec-command', request);
}