deepface/api/app.py
Sefik Ilkin Serengil 0d2b94679a api via gunicorn
2023-02-01 18:38:00 +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