Files
karaoke-me/karaokeme_cdk/karaokeme_cdk_stack.py
Domenico Testa 17017a1f84 Initial commit
2020-04-14 12:18:24 +02:00

10 lines
239 B
Python

from aws_cdk import core
class KaraokemeCdkStack(core.Stack):
def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
super().__init__(scope, id, **kwargs)
# The code that defines your stack goes here