11 lines
278 B
Python
11 lines
278 B
Python
from flask import Flask
|
|
from flask_cors import CORS
|
|
|
|
def create_app():
|
|
application = Flask(__name__)
|
|
CORS(application)
|
|
|
|
from application.services.sentiment_service import sentiment_service
|
|
application.register_blueprint(sentiment_service)
|
|
|
|
return application |