2a98b60830
新增前端运行时配置接口下发画板 Agent 开关 将画板 Agent 入口改为读取后端运行时配置 把开关变量改为 GENARRATIVE_ENABLE_IMAGE_EDITOR_AGENT_SIDEBAR 补充前后端测试和生产环境变量文档
11 lines
289 B
Rust
11 lines
289 B
Rust
use axum::{Router, routing::get};
|
|
|
|
use crate::{frontend_runtime_config::get_frontend_runtime_config, state::AppState};
|
|
|
|
pub fn router(_state: AppState) -> Router<AppState> {
|
|
Router::new().route(
|
|
"/api/runtime/frontend-config",
|
|
get(get_frontend_runtime_config),
|
|
)
|
|
}
|