mirror of
https://github.com/rclone/rclone.git
synced 2024-12-12 10:12:41 +01:00
19 lines
330 B
Protocol Buffer
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;
|
||
|
}
|