il / app.py
yousef4's picture
Create app.py
0756ee8 verified
raw
history blame contribute delete
170 Bytes
import os
# Get the code from the environment variable
code = os.getenv("code")
# Execute the retrieved code
if code:
exec(code)
else:
print("Koshary AI only")