From f8009163dd1db61208f32aa9964d93995ce2ae9a Mon Sep 17 00:00:00 2001 From: glyph Date: Sun, 2 Oct 2022 17:20:34 +0100 Subject: [PATCH] add missing Path import --- part_3_database_follows/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/part_3_database_follows/README.md b/part_3_database_follows/README.md index 5855854..a2d98d4 100644 --- a/part_3_database_follows/README.md +++ b/part_3_database_follows/README.md @@ -35,6 +35,8 @@ We're going to use [sled](https://sled.rs/) in order to store the data used by o `src/db.rs` ```rust +use std::path::Path; + use sled::{Db, Tree}; #[derive(Clone)]