Adithya765's picture
fix main entrypoint
3fd167f
raw
history blame contribute delete
233 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"status": "ok"}
def main():
import uvicorn
uvicorn.run("server.app:app", host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()