14 lines
226 B
Python
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)
|