mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-07-03 10:12:47 +02:00
8 lines
166 B
Go
8 lines
166 B
Go
package remote_pb
|
|
|
|
import "google.golang.org/protobuf/proto"
|
|
|
|
func (fp *RemoteStorageLocation) Key() interface{} {
|
|
key, _ := proto.Marshal(fp)
|
|
return string(key)
|
|
}
|