From f8fd7a86c11bf15a41cd402b2ef8fe457f0c2026 Mon Sep 17 00:00:00 2001 From: Determinant Date: Wed, 10 Jun 2020 11:50:02 -0400 Subject: move pure WAL implementation to wal.rs --- examples/demo1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/demo1.rs') 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, -- cgit v1.2.3