export class RequestAnalytics {
private constructor() {}
static async Process(_request: Request) {
try {
// TODO: Do host-side analytics and task monitoring here
} catch(e: any) {
console.warn(`Host::RequestAnalytics error!`, e.message);
};
}
}