go-ipfs-config: Implement basic filestore 'no-copy' functionality

License: MIT
Signed-off-by: Jeromy <why@ipfs.io>
This commit is contained in:
Jeromy 2017-01-20 10:48:23 -08:00 committed by Jeromy
parent a224112e3b
commit f1cb6feeb5
2 changed files with 7 additions and 1 deletions

View File

@ -30,7 +30,8 @@ type Config struct {
API API // local node's API settings
Swarm SwarmConfig
Reprovider Reprovider
Reprovider Reprovider
Experimental Experiments
}
const (

5
config/experiments.go Normal file
View File

@ -0,0 +1,5 @@
package config
type Experiments struct {
FilestoreEnabled bool
}