Files
once/app.py

12 lines
143 B
Python
Raw Normal View History

2020-06-05 18:00:53 +02:00
#!/usr/bin/env python3
from aws_cdk import core
from once.once_stack import OnceStack
app = core.App()
OnceStack(app, "once")
app.synth()