ChatDev/server/app.py
2026-01-07 16:24:01 +08:00

7 lines
145 B
Python
Executable File

from fastapi import FastAPI
from server.bootstrap import init_app
app = FastAPI(title="DevAll Workflow Server", version="1.0.0")
init_app(app)