Files
iptv-manager-service/app.py
Stefano c4f19999dc
All checks were successful
AWS Deploy on Push / build (push) Successful in 4m11s
Switch to cognito user/password authentication. Major code refactor - Fix 1
2025-05-16 11:11:16 -05:00

7 lines
160 B
Python

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