Skip to content

Commit

Permalink
Run eslint and prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ageddesi committed Nov 9, 2022
1 parent d969115 commit b969079
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ const constantPath = './src/modules/';
const routes = {};
/** DEFINE SENTRY LOGGING */
const Sentry = require('@sentry/node');
const SentryTracing = require("@sentry/tracing");
const SentryTracing = require('@sentry/tracing');
Sentry.init({
dsn: process.env.SENTRY_DSN,
tracesSampleRate: 1.0,
integrations: [
new Sentry.Integrations.Http({ tracing: true }),
new SentryTracing.Integrations.Express({
app,
app,
}),
],
],
});

fs.readdirSync(constantPath).forEach((module) => {
Expand Down

0 comments on commit b969079

Please sign in to comment.