13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
const Services = {};
|
|
Services.QIDO = {};
|
|
Services.WADO = {};
|
|
Services.DIMSE = {};
|
|
|
|
OHIF.studies.services = Services;
|
|
|
|
remoteGetValue = function(obj) {
|
|
return obj ? obj.Value : null;
|
|
};
|