pagraphcontrol/constants/pulse.js
2018-11-08 04:36:48 +03:00

35 lines
501 B
JavaScript

const things = [ {
method: 'getModules',
type: 'module',
key: 'modules',
}, {
method: 'getCards',
type: 'card',
key: 'cards',
}, {
method: 'getClients',
type: 'client',
key: 'clients',
}, {
method: 'getSinks',
type: 'sink',
key: 'sinks',
}, {
method: 'getSources',
type: 'source',
key: 'sources',
}, {
method: 'getSinkInputs',
type: 'sinkInput',
key: 'sinkInputs',
}, {
method: 'getSourceOutputs',
type: 'sourceOutput',
key: 'sourceOutputs',
} ];
module.exports = {
things,
};