//! Helpers for reading the `X-Company-Id` header.
useactix_web::HttpRequest;/// Returns the company identifier carried in the request headers.
pubfnget_x_company_id(req:&HttpRequest)->Option<String>{
req.headers().get("X-Company-Id").and_then(|h|h.to_str().ok()).map(|s|s.to_string())}