14 lines
354 B
Python
14 lines
354 B
Python
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)
|