1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! # ipfsapi
//! This is a crate for interfacing with the local IPFS API. It allows you to
//! read and write data to the IPFS network.
// API methods under /api/v0/block/.
// IPNS API
// API methods under /api/v0/pin/.
//pub mod pin;
//pub mod pubsub;
//mod log;
/// The main interface of the library
/// The `IpfsApi` class represents a connection to the local IPFS daemon. It can
/// read and write data to it using http requests to the server.