Files
ionscale/proto/api/version.proto
T
Johan Siebens 5ad89ff02f initial working version
Signed-off-by: Johan Siebens <johan.siebens@gmail.com>
2022-05-09 21:54:06 +02:00

11 lines
203 B
Protocol Buffer

syntax = "proto3";
package api;
option go_package = "github.com/jsiebens/ionscale/pkg/gen;api";
message GetVersionRequest {
}
message GetVersionResponse {
string version = 1;
string revision = 2;
}