Files
1Panel/frontend/src/api/modules/process.ts
T

7 lines
182 B
Go

import http from '@/api';
import { Process } from '../interface/process';
export const stopProcess = (req: Process.StopReq) => {
return http.post<any>(`/process/stop`, req);
};