sanic/examples/simple_server.py
2017-03-20 14:25:31 +08:00

14 lines
222 B
Python

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