irc_dicom_service/app/controller/readList.js

16 lines
290 B
JavaScript

const BaseController = require("./base");
class ReadListController extends BaseController {
constructor(props) {
super(props);
}
async getReadList () {
}
async retransmissionImage () {
}
async getImage () {
}
}
module.exports = ReadListController;