c630037f34
Change-Id: I470fa8b59ce7f00f2fbedbd0c0878fb5fff0590c
22 lines
502 B
Protocol Buffer
22 lines
502 B
Protocol Buffer
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
option go_package = "storj.io/storj/multinodepb";
|
|
|
|
package status;
|
|
|
|
import "gogo.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
service Status {
|
|
rpc Get(GetRequest) returns (GetResponse);
|
|
}
|
|
|
|
message GetRequest {}
|
|
|
|
message GetResponse {
|
|
google.protobuf.Timestamp started_at = 1 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
|
|
string version = 2; // must be semver formatted
|
|
}
|