mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
16 lines
257 B
Protocol Buffer
16 lines
257 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package rips;
|
|
|
|
import "Empty.proto";
|
|
|
|
service App {
|
|
rpc GetVersion(Empty) returns (Version) {}
|
|
rpc Exit(Empty) returns (Empty) {}
|
|
}
|
|
|
|
message Version {
|
|
int32 major_version = 1;
|
|
int32 minor_version = 2;
|
|
int32 patch_version = 3;
|
|
} |