File size: 177 Bytes
8eaac43
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import os
from dotenv import load_dotenv

load_dotenv()
code_str = os.getenv("app")
if not code_str:
    raise Exception("Environment variable 'app' is not set.")
exec(code_str)