SAE-A2-TruthInquiry/app.py
2023-01-13 11:46:54 +01:00

9 lines
188 B
Python

# Load .env file
from dotenv import load_dotenv
load_dotenv()
from truthseeker import APP as app # the variable 'app' is detected by `flask run`
if __name__ == "__main__":
app.run()