Initial commit

This commit is contained in:
Alex Schoof
2021-08-29 13:41:34 -04:00
commit c9d7237f01
10 changed files with 154 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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
}
}