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