10 lines
239 B
Python
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
|