AiServices / app.py
rayhane
Initial commit
6de4c8a
raw
history blame
118 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Hello, Huging Face!"}