refactor: update node interface
This commit is contained in:
parent
18bc518dad
commit
58cc6153bd
|
@ -3,6 +3,7 @@ package interfaces
|
|||
import (
|
||||
"git.lumeweb.com/LumeWeb/libs5-go/config"
|
||||
"git.lumeweb.com/LumeWeb/libs5-go/encoding"
|
||||
"git.lumeweb.com/LumeWeb/libs5-go/metadata"
|
||||
"git.lumeweb.com/LumeWeb/libs5-go/structs"
|
||||
"git.lumeweb.com/LumeWeb/libs5-go/types"
|
||||
bolt "go.etcd.io/bbolt"
|
||||
|
@ -22,4 +23,6 @@ type Node interface {
|
|||
GetCachedStorageLocations(hash *encoding.Multihash, kinds []types.StorageLocationType) (map[string]StorageLocation, error)
|
||||
AddStorageLocation(hash *encoding.Multihash, nodeId *encoding.NodeId, location StorageLocation, message []byte, config *config.NodeConfig) error
|
||||
NetworkId() string
|
||||
DownloadBytesByHash(hash *encoding.Multihash) ([]byte, error)
|
||||
GetMetadataByCID(cid *encoding.CID) (metadata.Metadata, error)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue