mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-23 16:00:52 +00:00
7 lines
182 B
Go
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);
|
|
};
|