storj/pkg/pb/scope.proto

19 lines
314 B
Protocol Buffer
Raw Normal View History

2019-07-02 16:45:23 +01:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
syntax = "proto3";
option go_package = "pb";
package scope;
import "encryption_access.proto";
message Scope {
string satellite_addr = 1;
bytes api_key = 2;
encryption_access.EncryptionAccess encryption_access = 3;
}