Files
2024-03-07 21:50:15 +09:00

12 lines
193 B
Python

import uvicorn
from dotenv import load_dotenv
from fastapi import FastAPI
from rvc.wrapper.api.endpoints import inference
load_dotenv()
app = FastAPI()
app.include_router(inference.router)