Events
Add events as code in your app.
How it works
const monitor: ({ title, message, notify, }: {
title: any; // Name of your event
message: any; // Content of your event
notify?: boolean | undefined; // Sends a notification using the webhook linked to your app
}) => voidExample
monitor({
title: "Hello",
message: "World",
notify: true,
})Last updated