deepface/api/src/app.py
Sefik Ilkin Serengil 8497682171 open issues
2024-02-02 17:33:31 +00:00

10 lines
177 B
Python

# 3rd parth dependencies
from flask import Flask
from routes import blueprint
def create_app():
app = Flask(__name__)
app.register_blueprint(blueprint)
return app