irc_dicom_service/app/service/config.js

13 lines
225 B
JavaScript

const Service = require("egg").Service;
class ConfigService extends Service {
constructor(props) {
super(props);
}
getConfig() {
return this.ctx.model.Config.findOne({});
}
}
module.exports = ConfigService;