diff options
Diffstat (limited to 'examples/demo1.rs')
-rw-r--r-- | examples/demo1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo1.rs b/examples/demo1.rs index 4c4f955..104c3b0 100644 --- a/examples/demo1.rs +++ b/examples/demo1.rs @@ -5,7 +5,7 @@ use nix::sys::{stat::Mode, uio::{pwrite, pread}}; use rand::{Rng, seq::SliceRandom}; use libc::off_t; -use growthring::{WALFile, WALStore, WALPos, WALBytes, WALLoader, WALWriter, WALRingId}; +use growthring::wal::{WALFile, WALStore, WALPos, WALBytes, WALLoader, WALWriter, WALRingId}; struct WALFileTest { filename: String, |