8c07e388cd
Co-authored-by: Néstor Pérez <25409753+prryplatypus@users.noreply.github.com>
15 lines
238 B
Python
15 lines
238 B
Python
from sanic import Sanic
|
|
from sanic import response as res
|
|
|
|
|
|
app = Sanic("Example")
|
|
|
|
|
|
@app.route("/")
|
|
async def test(req):
|
|
return res.text("I'm a teapot", status=418)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0", port=8000)
|