mirror of
https://github.com/rclone/rclone.git
synced 2024-12-11 17:51:12 +01:00
21 lines
377 B
Protocol Buffer
21 lines
377 B
Protocol Buffer
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
option go_package = "storj.io/common/pb";
|
|
|
|
package node;
|
|
|
|
service Certificates {
|
|
rpc Sign(SigningRequest) returns (SigningResponse);
|
|
}
|
|
|
|
message SigningRequest {
|
|
string auth_token = 1;
|
|
int64 timestamp = 2;
|
|
}
|
|
|
|
message SigningResponse {
|
|
repeated bytes chain = 1;
|
|
}
|