14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
import { importTypes } from '@rancher/auto-import';
|
|
import { IPlugin } from '@shell/core/types';
|
|
|
|
// const ID = 'openstack';
|
|
|
|
// Init the package
|
|
export default function(plugin: IPlugin) {
|
|
// Auto-import localization file(s)
|
|
importTypes(plugin);
|
|
|
|
// Provide plugin metadata from package.json
|
|
plugin.metadata = require('./package.json');
|
|
}
|