7 lines
170 B
Python
Raw Permalink Normal View History

2025-12-04 10:09:04 +08:00
from fastapi import FastAPI
from api import ecs
app = FastAPI(title="国际服务器 API")
app.include_router(ecs.router, prefix="/api/ecs", tags=["ECS 实例管理"])