mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 20:33:30 +01:00
12 lines
No EOL
340 B
JavaScript
12 lines
No EOL
340 B
JavaScript
import * as UIConfigPlugin from './uiConfigPlugin';
|
|
import * as PartOperationsPlugin from './partOperationsPlugin';
|
|
import {activatePlugins} from "../init/startApplication";
|
|
|
|
const PART_MODELLER_PLUGINS = [
|
|
UIConfigPlugin,
|
|
PartOperationsPlugin
|
|
];
|
|
|
|
export function activate(context) {
|
|
activatePlugins(PART_MODELLER_PLUGINS, context);
|
|
} |