Skip to main content

diskann_platform/
lib.rs

1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5
6#[cfg(windows)]
7pub mod win;
8
9#[cfg(windows)]
10pub use win::*;
11
12#[cfg(not(windows))]
13pub mod linux;
14
15#[cfg(not(windows))]
16pub use linux::*;