'use strict'; class AppBootHook { constructor(app) { this.app = app; } async willReady() { const ctx = await this.app.createAnonymousContext(); ctx.service.install.index(); } } module.exports = AppBootHook;