rclone/vendor/storj.io/common/pb/scope.proto
2020-05-12 15:56:50 +00:00

19 lines
330 B
Protocol Buffer

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
syntax = "proto3";
option go_package = "storj.io/common/pb";
package scope;
import "encryption_access.proto";
message Scope {
string satellite_addr = 1;
bytes api_key = 2;
encryption_access.EncryptionAccess encryption_access = 3;
}