12 lines
352 B
Rust
12 lines
352 B
Rust
//! Platform backend implementations.
|
|
|
|
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
|
|
pub mod linux;
|
|
#[cfg(all(target_os = "macos", target_arch = "aarch64"))]
|
|
pub mod macos;
|
|
|
|
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
|
|
pub use linux as current;
|
|
#[cfg(all(target_os = "macos", target_arch = "aarch64"))]
|
|
pub use macos as current;
|