fraud_detection_api_1 / app /__init__.py
cindyy287's picture
Upload 23 files
c2fb337 verified
raw
history blame contribute delete
217 Bytes
from flask import Flask
from flask_cors import CORS
from .routes import api
# Create and configure the Flask application exported by this package
app = Flask(__name__)
CORS(app)
app.register_blueprint(api)