db80358f32
* protobuf for sending bandwidth agreements to satellite from storage nodes * Setup process for sending agreements * Add payer_id to db with bandwidth agreements for better sorting * Renamed payer to satellite in psdb
17 lines
335 B
Protocol Buffer
17 lines
335 B
Protocol Buffer
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
option go_package = "pb";
|
|
|
|
package bandwidth;
|
|
|
|
import "piecestore.proto";
|
|
|
|
service Bandwidth {
|
|
rpc BandwidthAgreements(stream piecestoreroutes.RenterBandwidthAllocation) returns (AgreementsSummary) {}
|
|
}
|
|
|
|
|
|
message AgreementsSummary {
|
|
} |