mirror of
https://github.com/serengil/deepface.git
synced 2025-06-06 19:45:21 +00:00
10 lines
177 B
Python
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
|