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