8c07e388cd
Co-authored-by: Néstor Pérez <25409753+prryplatypus@users.noreply.github.com>
14 lines
211 B
Python
14 lines
211 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)
|