//! Helpers for reading the `X-Organization-Id` header.
useactix_web::HttpRequest;/// Returns the organizational identifier sent by the caller.
pubfnget_x_organization_id(req:&HttpRequest)->Option<String>{
req.headers().get("X-Organization-Id").and_then(|h|h.to_str().ok()).map(|s|s.to_string())}