UNPKG

@eggjs/tracer

Version:
11 lines (8 loc) 264 B
import type { EggCore, ILifecycleBoot } from '@eggjs/core'; import { isReady } from './app/extend/application.js'; export class TracerBoot implements ILifecycleBoot { constructor(private app: EggCore) {} async didLoad() { this.app[isReady] = true; } }