()
| 131 | |
| 132 | #[cfg(target_os = "macos")] |
| 133 | fn machine_identity_source() -> Option<String> { |
| 134 | io_platform_uuid().map(|uuid| format!("ioplatformuuid:{}", uuid.to_ascii_lowercase())) |
| 135 | } |
| 136 | |
| 137 | #[cfg(not(target_os = "macos"))] |
| 138 | fn machine_identity_source() -> Option<String> { |
no test coverage detected