mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
922386c673
First implementation with Asynchronous gRPC server, a few services and some client python code.
15 lines
224 B
Protocol Buffer
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;
|
|
} |