import {Method, SchemaInterface} from "../../schema-client"; class ProcessesSchema implements SchemaInterface { method = Method.GET url = '/system-monitoring/processes' contentType = null; } export let processesSchema = new ProcessesSchema() export default processesSchema