8 أسطر
119 B
Python
8 أسطر
119 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/")
|
|
def hello():
|
|
return {"message": "Hello from FastAPI!"}
|