update
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from fastapi import FastAPI
|
||||
|
||||
from .routes import animate, depth, inpaint, meta, segment
|
||||
|
||||
app = FastAPI(title="HFUT Model Server", version="0.1.0")
|
||||
|
||||
app.include_router(meta.router)
|
||||
app.include_router(depth.router)
|
||||
app.include_router(segment.router)
|
||||
app.include_router(inpaint.router)
|
||||
app.include_router(animate.router)
|
||||
Reference in New Issue
Block a user