Skip to content

Commit

Permalink
sonar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Jun 27, 2022
1 parent e354c75 commit 13b79fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/route/index.route.ts
Expand Up @@ -33,11 +33,11 @@ export namespace Routes {

const assets = {
mqChannelTag: envArgs.mqArgs?.smsServerMessageQueueChannel as string,
queueConsumer: new SmsQueueConsumer(new SmsController()),
queueConsumer: new SmsQueueConsumer(),
applicationName: 'SmsServer',
} as MountAssets;

var routes: Array<Route> = [];
const routes: Array<Route> = [];

routes.push({ name: subRoutes.monitor, router: monitorRouter });
routes.push({ name: subRoutes.sms, router: smsRouter });
Expand Down

0 comments on commit 13b79fe

Please sign in to comment.