11 lines
352 B
TypeScript
11 lines
352 B
TypeScript
import * as cdk from 'aws-cdk-lib/core';
|
|
import { Construct } from 'constructs';
|
|
import { ContactConstruct } from './lambda/contact/ContactConstruct';
|
|
|
|
export class JbApiAwsStack extends cdk.Stack {
|
|
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
|
|
super(scope, id, props);
|
|
new ContactConstruct(this, id);
|
|
}
|
|
}
|