mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Initial plugin runtime api implementation
This commit is contained in:
10
packages/node_modules/@node-red/runtime/lib/plugins.js
vendored
Normal file
10
packages/node_modules/@node-red/runtime/lib/plugins.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
const registry = require("@node-red/registry");
|
||||
|
||||
module.exports = {
|
||||
init: function() {},
|
||||
registerPlugin: registry.registerPlugin,
|
||||
getPlugin: registry.getPlugin,
|
||||
getPluginsByType: registry.getPluginsByType,
|
||||
getPluginList: registry.getPluginList,
|
||||
getPluginConfigs: registry.getPluginConfigs,
|
||||
}
|
Reference in New Issue
Block a user