9 lines
173 B
Plaintext
9 lines
173 B
Plaintext
import { Construct } from 'constructs';
|
|
import { Stack } from 'aws-cdk-lib';
|
|
|
|
class MyStack extends Stack {
|
|
constructor(scope: Construct, id: string) {
|
|
/// here
|
|
}
|
|
}
|