init: sudah ganti logo, hilangin setting, dan investigational use dialog
This commit is contained in:
31
extensions/tmtv/src/index.tsx
Normal file
31
extensions/tmtv/src/index.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
import { id } from './id';
|
||||
import getHangingProtocolModule from './getHangingProtocolModule';
|
||||
import getPanelModule from './getPanelModule';
|
||||
import init from './init';
|
||||
import commandsModule from './commandsModule';
|
||||
import getToolbarModule from './getToolbarModule';
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
const tmtvExtension = {
|
||||
/**
|
||||
* Only required property. Should be a unique value across all extensions.
|
||||
*/
|
||||
id,
|
||||
preRegistration({ servicesManager, commandsManager, extensionManager, configuration = {} }) {
|
||||
init({ servicesManager, commandsManager, extensionManager, configuration });
|
||||
},
|
||||
getToolbarModule,
|
||||
getPanelModule,
|
||||
getHangingProtocolModule,
|
||||
getCommandsModule({ servicesManager, commandsManager, extensionManager }) {
|
||||
return commandsModule({
|
||||
servicesManager,
|
||||
commandsManager,
|
||||
extensionManager,
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
export default tmtvExtension;
|
||||
Reference in New Issue
Block a user