use FromStr;
use ;
/// get_authorization_metadata
///
/// Creates a `MetadataMap` that contains the defined token as a value of the `authorization` key
/// Used for setting the runtime_token to authorize Sagittarius request
///
/// # Examples
///
/// ```
/// use code0_flow::flow_service::auth::get_authorization_metadata;
/// let token = String::from("token");
/// let metadata = get_authorization_metadata(&token);
/// assert!(metadata.get("authorization").is_some());
/// assert_eq!(metadata.get("authorization").unwrap(), "token");
/// ```