mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
First implementation with Asynchronous gRPC server, a few services and some client python code.
31 lines
371 B
Protocol Buffer
31 lines
371 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package rips;
|
|
|
|
message Case {
|
|
int32 id = 1;
|
|
}
|
|
|
|
message CaseInfo
|
|
{
|
|
int32 id = 1;
|
|
int32 group_id = 2;
|
|
string name = 3;
|
|
string type = 4;
|
|
}
|
|
|
|
message CaseInfos
|
|
{
|
|
repeated CaseInfo case_info = 1;
|
|
}
|
|
|
|
message CaseGroup
|
|
{
|
|
int32 id = 1;
|
|
string name = 2;
|
|
}
|
|
|
|
message CaseGroups
|
|
{
|
|
repeated CaseGroup case_group = 1;
|
|
} |