2020-05-07 20:00:59 +02:00
|
|
|
import getContextModule from './getContextModule.js';
|
2020-05-07 15:34:17 +02:00
|
|
|
import getDataSourcesModule from './getDataSourcesModule.js';
|
2020-05-07 20:00:59 +02:00
|
|
|
import getLayoutTemplatesModule from './getLayoutTemplatesModule.js';
|
|
|
|
|
import getSidePanelModule from './getSidePanelModule.js';
|
2020-05-07 15:34:17 +02:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
/**
|
|
|
|
|
* Only required property. Should be a unique value across all extensions.
|
|
|
|
|
*/
|
|
|
|
|
id: 'org.ohif.default',
|
2020-05-07 20:00:59 +02:00
|
|
|
getContextModule,
|
2020-05-07 15:34:17 +02:00
|
|
|
getDataSourcesModule,
|
2020-05-07 20:00:59 +02:00
|
|
|
getLayoutTemplatesModule,
|
|
|
|
|
getSidePanelModule,
|
2020-05-07 15:34:17 +02:00
|
|
|
};
|