zagens-cli 0.8.3

Zagens headless CLI + HTTP/SSE runtime sidecar (`zagens`, `zagens-runtime` binaries)
Documentation
1
2
3
4
5
6
7
8
//! `GET /v1/office/environment` — Office Python / dependency diagnostics.

use axum::Json;
use serde_json::Value;

pub async fn get_office_environment() -> Json<Value> {
    Json(crate::office_env::office_environment_status())
}