UNPKG

genezio

Version:

Command line utility to interact with Genezio infrastructure.

14 lines (13 loc) 519 B
/** * This is an auto generated code. This code should not be modified since the file can be overwritten * if new genezio commands are executed. */ import { GENEZIO_TELEMETRY_ENDPOINT } from "../../constants.js"; import { Remote } from "./remote.js"; export class AnalyticsHandler { static async sendEvent(telemetryData) { return await AnalyticsHandler.remote.call("AnalyticsHandler.sendEvent", telemetryData); } } AnalyticsHandler.remote = new Remote(GENEZIO_TELEMETRY_ENDPOINT); export { Remote };