node-red/packages/node_modules/@node-red/runtime/lib/api/index.js

52 lines
1.5 KiB
JavaScript
Raw Normal View History

/*!
2018-04-15 12:18:10 +02:00
* Copyright JS Foundation and other contributors, http://js.foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
2018-04-15 12:18:10 +02:00
2018-04-20 21:50:20 +02:00
var runtime;
2018-04-15 12:18:10 +02:00
var api = module.exports = {
2018-08-04 23:23:06 +02:00
init: function(_runtime) {
2018-04-20 21:50:20 +02:00
runtime = _runtime;
2018-04-23 12:21:02 +02:00
api.comms.init(runtime);
2018-04-15 12:18:10 +02:00
api.flows.init(runtime);
api.nodes.init(runtime);
api.settings.init(runtime);
api.library.init(runtime);
2018-04-20 21:50:20 +02:00
api.projects.init(runtime);
2018-07-30 00:47:19 +02:00
api.context.init(runtime);
api.plugins.init(runtime);
2022-03-24 17:00:45 +01:00
api.diagnostics.init(runtime);
2018-04-15 12:18:10 +02:00
},
comms: require("./comms"),
flows: require("./flows"),
library: require("./library"),
nodes: require("./nodes"),
2018-04-20 21:50:20 +02:00
settings: require("./settings"),
projects: require("./projects"),
2018-07-30 00:47:19 +02:00
context: require("./context"),
plugins: require("./plugins"),
2022-03-24 17:00:45 +01:00
diagnostics: require("./diagnostics"),
2018-04-20 21:50:20 +02:00
isStarted: async function(opts) {
return runtime.isStarted();
2018-04-23 12:21:02 +02:00
},
version: async function(opts) {
return runtime.version();
2018-04-20 21:50:20 +02:00
}
2018-04-15 12:18:10 +02:00
}