15 lines
377 B
Plaintext
15 lines
377 B
Plaintext
// Fixture with packages imported, but nothing else
|
|
import { Stack } from 'aws-cdk-lib';
|
|
import { Construct } from 'constructs';
|
|
import * as s3n from 'aws-cdk-lib/aws-s3-notifications';
|
|
import * as s3 from 'aws-cdk-lib/aws-s3';
|
|
import * as path from 'path';
|
|
|
|
class Fixture extends Stack {
|
|
constructor(scope: Construct, id: string) {
|
|
super(scope, id);
|
|
|
|
/// here
|
|
}
|
|
}
|