Merge pull request #736 from fanjindong/examples_read

debug 'Blueprint names must be unique'
This commit is contained in:
Raphael Deem 2017-05-19 01:45:06 -07:00 committed by GitHub
commit d49000e9f4

View File

@ -5,8 +5,8 @@ from sanic.response import json, text
app = Sanic(__name__)
blueprint = Blueprint('name', url_prefix='/my_blueprint')
blueprint2 = Blueprint('name', url_prefix='/my_blueprint2')
blueprint3 = Blueprint('name', url_prefix='/my_blueprint3')
blueprint2 = Blueprint('name2', url_prefix='/my_blueprint2')
blueprint3 = Blueprint('name3', url_prefix='/my_blueprint3')
@blueprint.route('/foo')
@ -18,6 +18,7 @@ async def foo(request):
async def foo2(request):
return json({'msg': 'hi from blueprint2'})
@blueprint3.websocket('/foo')
async def foo3(request, ws):
while True: