10 lines
182 B
Go
10 lines
182 B
Go
|
package storage
|
||
|
|
||
|
import "git.lumeweb.com/LumeWeb/libs5-go/encoding"
|
||
|
|
||
|
type SignedStorageLocation interface {
|
||
|
String() string
|
||
|
NodeId() *encoding.NodeId
|
||
|
Location() StorageLocation
|
||
|
}
|