polyverse_file_rotate/
lib.rs1pub mod error;
2
3#[cfg(not(feature = "async"))]
4mod synchronous;
5
6#[cfg(not(feature = "async"))]
7pub use synchronous::*;
8
9#[cfg(feature = "async")]
10mod asynchronous;
11
12#[cfg(feature = "async")]
13pub use asynchronous::*;