diff options
author | Determinant <[email protected]> | 2020-06-10 11:50:02 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-06-10 11:50:02 -0400 |
commit | f8fd7a86c11bf15a41cd402b2ef8fe457f0c2026 (patch) | |
tree | 0adf825d7e19e0b25bda8ac58fa246c7a30994f6 /examples | |
parent | 811146c489ddd1494ff083609c10daed0c2c5023 (diff) |
move pure WAL implementation to wal.rs
Diffstat (limited to 'examples')
-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, |