PMCORE-2512

This commit is contained in:
Henry Jordan
2020-12-04 13:33:23 +00:00
parent e54bf886f1
commit c2f0d239aa
12 changed files with 251 additions and 188 deletions

View File

@@ -0,0 +1,14 @@
import Api from "./Api.js";
export let process = {
list: {
start(dt) {
return Api.fetch({
service: "GET_NEW_CASES",
method: "get",
data: {},
keys: {}
});
}
}
};