Created
November 23, 2022 17:21
Star
You must be signed in to star a gist
Hello World
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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