@razorpay/blade-mcp
Version:
Model Context Protocol server for Blade
15 lines • 522 B
JavaScript
import * as Sentry from '@sentry/node';
import { getPackageJSONVersion } from './generalUtils.js';
const initSentry = () => {
Sentry.init({
dsn: 'https://303ee336f536584ca853aed16e1a2a60@o515678.ingest.us.sentry.io/4509332105330688',
environment: 'production',
release: getPackageJSONVersion(),
sendDefaultPii: false,
});
};
const captureException = (error) => {
Sentry.captureException(error);
};
export { initSentry, captureException };
//# sourceMappingURL=sentryUtils.js.map