Add instantiate to proto

This commit is contained in:
hu55a1n1 2024-02-22 12:09:25 -08:00
parent e74badc7bb
commit 4dc293062f

View file

@ -3,9 +3,16 @@ syntax = "proto3";
package quartz; package quartz;
service Core { service Core {
rpc Instantiate (InstantiateRequest) returns (InstantiateResponse) {}
rpc SessionCreate (SessionCreateRequest) returns (SessionCreateResponse) {} rpc SessionCreate (SessionCreateRequest) returns (SessionCreateResponse) {}
} }
message InstantiateRequest {}
message InstantiateResponse {
string message = 1;
}
message SessionCreateRequest {} message SessionCreateRequest {}
message SessionCreateResponse { message SessionCreateResponse {