-
Marin Karamihalev authoredMarin Karamihalev authored
index.ts 532 B
import get from "./get";
import set from "./set";
import add from "./add";
import del from "./del";
import operate from "./operate";
import supported from "./supported";
import proto from "./proto";
import instances from "./instances";
import notify from "./notify";
import notifyResp from "./notifyResp";
export default {
GET: get,
GET_INSTANCES: instances,
GET_SUPPORTED_DM: supported,
GET_SUPPORTED_PROTO: proto,
NOTIFY: notify,
NOTIFY_RESP: notifyResp,
ADD: add,
DELETE: del,
OPERATE: operate,
SET: set,
};