16 lines
364 B
Python
16 lines
364 B
Python
"""FastAPI 入口:挂载路由、中间件(JWT/RBAC)、生命周期。"""
|
|||
|
|
|
||
|
|
from fastapi import FastAPI
|
||
|
|
|
||
|
|
from app.config.settings import settings
|
||
|
|
|
||
|
|
app = FastAPI(title="JinRong Agent Platform", version="0.1.0")
|
||
|
|
|
||
|
|
|
||
|
|
@app.get("/health")
|
||
|
|
def health():
|
||
|
|
return {"status": "ok", "env": settings.app_env}
|
||
|
|
|
||
|
|
|
||
|
|
# TODO: 挂载 app.api 路由;接入 Auth SDK 中间件
|