sanic/examples/simple_server.py
2017-04-11 20:34:55 +00:00

14 lines
226 B
Python

from sanic import Sanic
from sanic import response
app = Sanic(__name__)
@app.route("/")
async def test(request):
return response.json({"test": True})
if __name__ == '__main__':
app.run(host="0.0.0.0", port=8000)