first commit

This commit is contained in:
2025-05-13 18:13:40 -05:00
commit d7d5ee0836
9 changed files with 188 additions and 0 deletions

7
app.py Normal file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python3
import aws_cdk as cdk
from infrastructure.stack import IptvUpdaterStack
app = cdk.App()
IptvUpdaterStack(app, "IptvUpdater")
app.synth()