rsshub / lib /shims /sentry-node.ts
asemxin
Initial commit for HF Spaces
bf48b89
Raw
History Blame Contribute Delete
174 Bytes
// No-op shim for @sentry/node in Cloudflare Workers
export const withScope = (callback: (scope: unknown) => void) => callback({});
export const captureException = () => {};