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