Anythinhllm / app.py
Kaballas's picture
Add AnythingLLM Docker configuration
489497e
raw
history blame contribute delete
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}