mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-28 09:51:44 -06:00
17 lines
456 B
Protocol Buffer
17 lines
456 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "Definitions.proto";
|
|
import "Case.proto";
|
|
import "PdmObject.proto";
|
|
|
|
package rips;
|
|
|
|
service Project {
|
|
rpc GetCurrentCase(Empty) returns (CaseRequest) {}
|
|
rpc GetSelectedCases(Empty) returns (CaseInfoArray) {}
|
|
rpc GetAllCaseGroups(Empty) returns (CaseGroups) {}
|
|
rpc GetAllCases(Empty) returns (CaseInfoArray) {}
|
|
rpc GetCasesInGroup(CaseGroup) returns (CaseInfoArray) {}
|
|
rpc GetPdmObject(Empty) returns (PdmObject) {}
|
|
}
|