go-ipfs-config: Implement pluggable Datastore types, with nothing implemented yet
License: MIT Signed-off-by: Tommi Virtanen <tv@eagain.net>
Tommi Virtanen committed
May 20, 2015 at 10:17 UTC
3f419cc59902eaafd6bf650ca4971e61b14866d4
1 file changed
+1
-2
config/config.go
+1
-2
@@ -18,6 +18,7 @@ var log = logging.Logger("config")
18
// Config is used to load IPFS config files.
19
type Config struct {
20
Identity Identity // local node's peer identity
21
+ Datastore Datastore // local node's storage
22
Addresses Addresses // local node's addresses
23
Mounts Mounts // local node's mount points
24
Version Version // local node's version management
@@ -29,8 +30,6 @@ type Config struct {
30
SupernodeRouting SupernodeClientConfig // local node's routing servers (if SupernodeRouting enabled)
31
API API // local node's API settings
32
Swarm SwarmConfig
32
-
33
- Datastore Datastore
33
}
34
35
const (