Skip to content

Commit 3d50a01

Browse files
committed
prettier linting snapshots
1 parent 01a853c commit 3d50a01

7 files changed

Lines changed: 6339 additions & 317 deletions

File tree

cdk/bin/cdk.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import type { GuStackProps } from '@guardian/cdk/lib/constructs/core';
33
import { App } from 'aws-cdk-lib';
44
import { Registration } from '../lib/registration';
55
import { RegistrationsDbProxy } from '../lib/registrations-db-proxy';
6+
import { SenderWorkerStack } from '../lib/senderworker';
67
import { SloMonitoring } from '../lib/slo-monitoring';
7-
import {SenderWorkerStack} from "../lib/senderworker";
88

99
const app = new App();
1010

@@ -56,11 +56,11 @@ new SloMonitoring(app, 'SloMonitor-PROD', {
5656
});
5757

5858
new SenderWorkerStack(app, 'SenderWorkerStack-CODE', {
59-
stack: "mobile-notifications-workers",
60-
stage: "CODE"
61-
})
59+
stack: 'mobile-notifications-workers',
60+
stage: 'CODE',
61+
});
6262

6363
new SenderWorkerStack(app, 'SenderWorkerStack-PROD', {
64-
stack: "mobile-notifications-workers",
65-
stage: "PROD"
66-
})
64+
stack: 'mobile-notifications-workers',
65+
stage: 'PROD',
66+
});

0 commit comments

Comments
 (0)