import HtmlEndpoint from 'endpoint/html'; import HomePageTemplate from 'template/page/home'; class HtmlHomeEndpoint extends HtmlEndpoint> { protected async process(): Promise { const account = this.getAccount(); const template = new HomePageTemplate({ account }); const html = template.render(); return Promise.resolve(html); } } export default HtmlHomeEndpoint;