1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-18 08:31:22 +02:00
seaweedfs/weed/pb/remote_pb/remote_pb_helper.go
2021-08-26 15:18:34 -07:00

9 lines
166 B
Go

package remote_pb
import "github.com/golang/protobuf/proto"
func (fp *RemoteStorageLocation) Key() interface{} {
key, _ := proto.Marshal(fp)
return string(key)
}