fashionCORE / entry_with_update.py
Singularity666's picture
Update entry_with_update.py
31e414a verified
raw
history blame contribute delete
No virus
206 Bytes
import gradio as gr
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_main():
return {"message": "This is your FastAPI app"}
import main
gr.mount_gradio_app(app, main.demo, path="/")