import {Method, SchemaInterface} from "../../schema-client"; class KillProcessSchema implements SchemaInterface { method = Method.POST url = '/system-monitoring/processes/{id}/kill' contentType = null; } export let killProcessSchema = new KillProcessSchema() export default killProcessSchema