deepface/api/src/app.py
Sefik Ilkin Serengil 53890974ea some changes on api services
- exception handling added in service
- new folder structure for api
2024-02-04 10:38:34 +00:00

10 lines
190 B
Python

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