mirror of
https://github.com/aljazceru/ThunderCloud.git
synced 2025-12-17 06:14:20 +01:00
10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import * as cdk from '@aws-cdk/core';
|
|
|
|
export class ThundercloudStack extends cdk.Stack {
|
|
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
|
|
super(scope, id, props);
|
|
|
|
// The code that defines your stack goes here
|
|
}
|
|
}
|