14 lines
278 B
C
14 lines
278 B
C
|
#ifndef __CORE_IPFS_NODE_H__
|
||
|
#define __CORE_IPFS_NODE_H__
|
||
|
|
||
|
struct IpfsNode {
|
||
|
//struct PeerId identity;
|
||
|
//struct Repo repo;
|
||
|
//struct Pinner pinning; // an interface
|
||
|
//struct Mount** mounts;
|
||
|
//struct PrivKey* private_key;
|
||
|
// TODO: Add more here
|
||
|
};
|
||
|
|
||
|
#endif /* ipfs_node_h */
|