9 lines
134 B
Python
9 lines
134 B
Python
from fastapi import FastAPI, HTTPException
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/hello/")
|
|
async def hello() -> str:
|
|
return "Hello World!"
|