0.1.6Updated a month ago
export class ResponseAnalytics {
  private constructor() {}

  static async Process(_request: Request, _response: Response) {
    try {

      // TODO: Do host-side analytics and task monitoring here

    } catch(e: any) {
      console.warn(`Host::ResponseAnalytics error!`, e.message);
    };
  }
}