Add instantiate to proto
This commit is contained in:
parent
e74badc7bb
commit
4dc293062f
1 changed files with 7 additions and 0 deletions
|
@ -3,9 +3,16 @@ syntax = "proto3";
|
|||
package quartz;
|
||||
|
||||
service Core {
|
||||
rpc Instantiate (InstantiateRequest) returns (InstantiateResponse) {}
|
||||
rpc SessionCreate (SessionCreateRequest) returns (SessionCreateResponse) {}
|
||||
}
|
||||
|
||||
message InstantiateRequest {}
|
||||
|
||||
message InstantiateResponse {
|
||||
string message = 1;
|
||||
}
|
||||
|
||||
message SessionCreateRequest {}
|
||||
|
||||
message SessionCreateResponse {
|
||||
|
|
Loading…
Reference in a new issue