mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-14 01:13:52 -06:00
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;
|
||
|
}
|