browser_info/platform/
mod.rs

1#[cfg(target_os = "windows")]
2pub mod windows;
3
4#[cfg(target_os = "macos")]
5pub mod macos;
6
7#[cfg(any(
8    all(feature = "devtools", target_os = "windows"),
9    all(doc, feature = "devtools")
10))]
11pub mod chrome_devtools;
12
13// 将来の拡張用
14// pub mod firefox_remote;