Initial commit

This commit is contained in:
2020-06-05 18:00:53 +02:00
commit 14fb18740b
9 changed files with 154 additions and 0 deletions

11
app.py Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
from aws_cdk import core
from once.once_stack import OnceStack
app = core.App()
OnceStack(app, "once")
app.synth()