ikram
first commit
d0d55cc
raw
history blame contribute delete
118 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Hello, Huging Face!"}