2016-10-09 23:28:31 +01:00
|
|
|
from sanic import Sanic
|
|
|
|
from sanic.response import json
|
|
|
|
|
|
|
|
app = Sanic(__name__)
|
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
|
2016-10-09 23:28:31 +01:00
|
|
|
@app.route("/")
|
|
|
|
async def test(request):
|
2016-10-15 03:53:49 +01:00
|
|
|
return json({"test": True})
|
|
|
|
|
2016-10-09 23:28:31 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
app.run(host="0.0.0.0", port=8000)
|