aboutsummaryrefslogtreecommitdiff
path: root/examples/demo1.rs
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2020-06-10 11:50:02 -0400
committerDeterminant <tederminant@gmail.com>2020-06-10 11:50:02 -0400
commitf8fd7a86c11bf15a41cd402b2ef8fe457f0c2026 (patch)
tree0adf825d7e19e0b25bda8ac58fa246c7a30994f6 /examples/demo1.rs
parent811146c489ddd1494ff083609c10daed0c2c5023 (diff)
move pure WAL implementation to wal.rs
Diffstat (limited to 'examples/demo1.rs')
-rw-r--r--examples/demo1.rs2
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,