gmini / app_7864.py
xidu's picture
refactor: Final attempt with pure python gateway
b5077ac
raw
history blame contribute delete
138 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Response from Service #3 on Port 7864"}