blob: 9dbaabf9fa3574bb13ad299822164c38a9b00358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
syntax = "proto3";
package xeiaso.net;
option go_package = "xeiaso.net/v4/pb";
import "google/protobuf/empty.proto";
import "google/protobuf/timestamp.proto";
service Lume { rpc Metadata(google.protobuf.Empty) returns (BuildInfo); }
message BuildInfo {
string commit = 1;
google.protobuf.Timestamp build_time = 2;
string go_version = 3;
string deno_version = 4;
string xesite_version = 5;
}
|