Checkin start on real-time stuff so we can merge the bob the branch

This commit is contained in:
Joseph Schorr 2014-02-06 13:36:32 -05:00
parent dbed1300ad
commit c2fb1e5d78
2 changed files with 98 additions and 0 deletions

View file

@ -12,6 +12,7 @@ from endpoints.web import web
from endpoints.tags import tags
from endpoints.registry import registry
from endpoints.webhooks import webhooks
from endpoints.realtime import realtime
logger = logging.getLogger(__name__)
@ -26,6 +27,7 @@ application.register_blueprint(tags, url_prefix='/v1')
application.register_blueprint(registry, url_prefix='/v1')
application.register_blueprint(api, url_prefix='/api')
application.register_blueprint(webhooks, url_prefix='/webhooks')
application.register_blueprint(realtime, url_prefix='/realtime')
# Remove this for prod config
application.debug = True