Skip to main content

diskann_platform/
lib.rs

1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5
6#[cfg(target_os = "windows")]
7pub mod win;
8
9#[cfg(target_os = "windows")]
10pub use win::*;
11
12#[cfg(target_os = "linux")]
13pub mod linux;
14
15#[cfg(target_os = "linux")]
16pub use linux::*;
17
18#[cfg(target_os = "macos")]
19pub mod macos;
20
21#[cfg(target_os = "macos")]
22pub use macos::*;