Skip to content

Instantly share code, notes, and snippets.

@carlosm27
Created November 23, 2022 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlosm27/cfb335822dc86f772d90c1058ddd6d8a to your computer and use it in GitHub Desktop.
Save carlosm27/cfb335822dc86f772d90c1058ddd6d8a to your computer and use it in GitHub Desktop.
Hello World
from robyn import Robyn
app = Robyn(__file__)
@app.get("/")
async def hello(request):
return "Hello, world!"
app.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment