20 lines
497 B
JavaScript
20 lines
497 B
JavaScript
import OHIFDicomHtmlSopClassHandler from './OHIFDicomHtmlSopClassHandler.js';
|
|
import OHIFDicomHtmlViewport from './OHIFDicomHtmlViewport.js';
|
|
|
|
export default class OHIFDicomHtmlExtension {
|
|
/**
|
|
* Extension ID is a unique id, might be used for namespacing extension specific redux actions/reducers (?)
|
|
*/
|
|
getExtensionId() {
|
|
return 'html';
|
|
}
|
|
|
|
getViewportModule() {
|
|
return OHIFDicomHtmlViewport;
|
|
}
|
|
|
|
getSopClassHandlerModule() {
|
|
return OHIFDicomHtmlSopClassHandler;
|
|
}
|
|
}
|