Files
karaoke-me/karaokeme_cdk/karaokeme_cdk_stack.py

10 lines
239 B
Python
Raw Normal View History

2020-04-14 12:18:24 +02:00
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