sitemap-service-h5.js
313 Bytes
const sitemapStore = global.yoho.config.sitemap;
const SiteMapService = require('./sitemap-service');
module.exports = class extends SiteMapService {
constructor(ctx) {
super(ctx);
this.host = sitemapStore.h5.host;
this.props = sitemapStore.h5.props;
this.type = sitemapStore.h5.type;
}
};