mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 20:37:53 +08:00
go-ipfs-config: Implement pluggable Datastore types, with nothing implemented yet
License: MIT Signed-off-by: Tommi Virtanen <tv@eagain.net>
This commit is contained in:
parent
1f3ad37541
commit
3f419cc599
@ -18,6 +18,7 @@ var log = logging.Logger("config")
|
||||
// Config is used to load IPFS config files.
|
||||
type Config struct {
|
||||
Identity Identity // local node's peer identity
|
||||
Datastore Datastore // local node's storage
|
||||
Addresses Addresses // local node's addresses
|
||||
Mounts Mounts // local node's mount points
|
||||
Version Version // local node's version management
|
||||
@ -29,8 +30,6 @@ type Config struct {
|
||||
SupernodeRouting SupernodeClientConfig // local node's routing servers (if SupernodeRouting enabled)
|
||||
API API // local node's API settings
|
||||
Swarm SwarmConfig
|
||||
|
||||
Datastore Datastore
|
||||
}
|
||||
|
||||
const (
|
||||
|
||||
Loading…
Reference in New Issue
Block a user