14 lines
388 B
Plaintext
14 lines
388 B
Plaintext
// Fixture with packages imported, but nothing else
|
|
import { Construct } from 'constructs';
|
|
import { DockerImage, Stack, BundlingFileAccess } from 'aws-cdk-lib';
|
|
import { Runtime } from 'aws-cdk-lib/aws-lambda';
|
|
import * as python from 'aws-cdk-lib/aws-lambda-python';
|
|
|
|
class Fixture extends Stack {
|
|
constructor(scope: Construct, id: string) {
|
|
super(scope, id);
|
|
|
|
/// here
|
|
}
|
|
}
|