Files / app.py
Shreyas1441AI's picture
Create app.py
8f5d87c verified
raw
history blame contribute delete
241 Bytes
import os
# Retrieve the saved code from environment variables
app_code = os.getenv("VIVA_SECURE")
if not app_code:
raise ValueError("VIVA-SECURE-corrupt environment variable is missing!")
# Execute the code dynamically
exec(app_code)