cycles-quartz/utils/quartz-proto/proto/quartz.proto
2024-02-22 12:09:25 -08:00

21 lines
380 B
Protocol Buffer

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 {
string message = 1;
}