import { Client } from "@upstash/qstash"; const client = new Client({ token: "<QSTASH_TOKEN>" }); const messages = client.messages const msg = await messages.get("msgId");
import { Client } from "@upstash/qstash"; const client = new Client({ token: "<QSTASH_TOKEN>" }); const messages = client.messages const msg = await messages.delete("msgId");
Was this page helpful?