Files
litestar-machines-test/main.py
Eden Kirin 97be2871d4 Initial
2023-08-25 21:54:30 +02:00

10 lines
138 B
Python

from litestar import Litestar, get
@get("/")
async def hello_world() -> str:
return "Hello, world!"
app = Litestar([hello_world])