add missing Path import

This commit is contained in:
glyph 2022-10-02 17:20:34 +01:00
parent 473e9ac225
commit f8009163dd
1 changed files with 2 additions and 0 deletions

View File

@ -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)]