Merge pull request #134 from RyanKung/patch-1

Update README.md
This commit is contained in:
Channel Cat
2016-11-02 21:28:36 -07:00
committed by GitHub

View File

@@ -35,7 +35,7 @@ app = Sanic(__name__)
@app.route("/")
async def test(request):
return json({ "hello": "world" })
return json({"hello": "world"})
app.run(host="0.0.0.0", port=8000)
```