Skip to content

Commit ebeca73

Browse files
BlobsProtocol::new now takes just store and events (#404)
1 parent 8485a94 commit ebeca73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/docs/quickstart/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async fn main() -> anyhow::Result<()> {
9090
// We initialize an in-memory backing store for iroh-blobs
9191
let store = MemStore::new();
9292
// Then we initialize a struct that can accept blobs requests over iroh connections
93-
let blobs = BlobsProtocol::new(&store, endpoint.clone(), None);
93+
let blobs = BlobsProtocol::new(&store, None);
9494

9595
// ...
9696

0 commit comments

Comments
 (0)