Files
luos/resources/assets/js/api/Process.js

16 lines
355 B
JavaScript
Raw Normal View History

import ApiInstance from "./Api.js";
import Services from "./Services";
let Api = new ApiInstance( Services );
2020-12-04 13:33:23 +00:00
export let process = {
list: {
start(dt) {
return Api.fetch({
service: "GET_NEW_CASES",
method: "get",
data: {},
keys: {}
});
}
}
};