We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26a5bc7 commit 0f1db08Copy full SHA for 0f1db08
README.md
@@ -35,10 +35,9 @@ Here is a basic example of how to set up `iroh-blobs` with `iroh`:
35
```rust,no_run
36
use iroh::{protocol::Router, Endpoint};
37
use iroh_blobs::{store::mem::MemStore, BlobsProtocol, ticket::BlobTicket};
38
-use n0_error::{Result, StdResultExt};
39
40
#[tokio::main]
41
-async fn main() -> Result<()> {
+async fn main() -> anyhow::Result<()> {
42
// create an iroh endpoint that includes the standard discovery mechanisms
43
// we've built at number0
44
let endpoint = Endpoint::bind().await?;
0 commit comments