You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from sanic.response import text
app = Sanic("MyHelloWorldApp")
@app.get("/")
async def helloworld(request):
return text("Hello, world.")
if name == "_main":
app.run(host="localhost", port=69)```