go-ipfs-config: Implement basic filestore 'no-copy' functionality
License: MIT Signed-off-by: Jeromy <why@ipfs.io>
Jeromy committed
Jan 20, 2017 at 10:48 UTC
f1cb6feeb5e4b2199338429489eaac1032d15375
2 files changed
+7
-1
config/config.go
+2
-1
@@ -30,7 +30,8 @@ type Config struct {
30
API API // local node's API settings
31
Swarm SwarmConfig
32
33
- Reprovider Reprovider
33
+ Reprovider Reprovider
34
+ Experimental Experiments
35
}
36
37
const (
config/experiments.go
new
+5
@@ -0,0 +1,5 @@
1
+package config
2
+
3
+type Experiments struct {
4
+ FilestoreEnabled bool
5
+}