diff --git a/docs/quickstart.md b/docs/quickstart.md index ce32e9a..9679892 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -22,12 +22,12 @@ SlateDB uses [`tokio`](https://crates.io/crates/tokio) as its async runtime and ```rust use bytes::Bytes; use object_store::{ObjectStore, memory::InMemory, path::Path}; -use slatedb::db:{Db, DbOptions}; -use slatedb::compactor::CompactorOptions; +use slatedb::db:Db; +use slatedb::config::{CompactorOptions, DbOptions}; use std::{sync::Arc, time::Duration}; #[tokio::main] -fn main() { +async fn main() { // Setup let object_store: Arc = Arc::new(InMemory::new()); let options = DbOptions {