sanic/examples/simple_server.py

14 lines
222 B
Python
Raw Normal View History

2016-10-09 23:28:31 +01:00
from sanic import Sanic
from sanic.response import json
app = Sanic(__name__)
2016-10-09 23:28:31 +01:00
@app.route("/")
async def test(request):
return json({"test": True})
2016-10-09 23:28:31 +01:00
2017-03-12 14:42:34 +00:00
if __name__ == '__main__':
app.run(host="0.0.0.0", port=8000)