19 lines
616 B
Python
19 lines
616 B
Python
import logging
|
|
import logging.config
|
|
|
|
from app import app as application, queue_metrics
|
|
|
|
from endpoints.api import api_bp
|
|
from endpoints.web import web
|
|
from endpoints.webhooks import webhooks
|
|
from endpoints.realtime import realtime
|
|
from endpoints.callbacks import callback
|
|
|
|
# Start the cloudwatch reporting.
|
|
queue_metrics.run()
|
|
|
|
application.register_blueprint(web)
|
|
application.register_blueprint(callback, url_prefix='/oauth2')
|
|
application.register_blueprint(api_bp, url_prefix='/api')
|
|
application.register_blueprint(webhooks, url_prefix='/webhooks')
|
|
application.register_blueprint(realtime, url_prefix='/realtime')
|