ResInsight/ApplicationCode/GrpcInterface/GrpcProtos/ResInfo.proto
Gaute Lindkvist 922386c673
#4416 First implementation of gRPC-based Python interface
First implementation with Asynchronous gRPC server, a few services and some client python code.
2019-05-20 13:21:02 +02:00

15 lines
224 B
Protocol Buffer

syntax = "proto3";
package rips;
import "Empty.proto";
service ResInfo {
rpc GetVersion(Empty) returns (Version) {}
}
message Version {
int32 major_version = 1;
int32 minor_version = 2;
int32 patch_version = 3;
}