7 lines
170 B
Python
7 lines
170 B
Python
|
|
from fastapi import FastAPI
|
||
|
|
from api import ecs
|
||
|
|
|
||
|
|
app = FastAPI(title="国际服务器 API")
|
||
|
|
|
||
|
|
app.include_router(ecs.router, prefix="/api/ecs", tags=["ECS 实例管理"])
|