1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-04 04:54:16 +08:00

7 lines
182 B
Go
Raw Normal View History

2023-06-28 14:50:10 +08:00
import http from '@/api';
import { Process } from '../interface/process';
export const StopProcess = (req: Process.StopReq) => {
return http.post<any>(`/process/stop`, req);
};