web-app-temp / web_app /backend /app /__init__.py
leothesouthafrican's picture
docker local
b978eed
raw
history blame contribute delete
299 Bytes
from flask import Flask # Import the Flask module
from flask_cors import CORS # Import the CORS module
app = Flask(__name__) # Initialize a Flask web app
cors = CORS(app)
from app import chatbot_routes, home, models # Import modules from the "app" package (assuming it's in the same directory)