jb-api-aws/lib/jb-api-aws-stack.ts
2026-01-08 18:53:49 -06:00

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);
}
}