sanic/examples/hello_world.py

13 lines
210 B
Python

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