cycles-quartz/utils/quartz-proto/proto/quartz.proto

21 lines
380 B
Protocol Buffer
Raw Normal View History

2024-02-20 11:27:10 +00:00
syntax = "proto3";
package quartz;
service Core {
2024-02-22 20:09:25 +00:00
rpc Instantiate (InstantiateRequest) returns (InstantiateResponse) {}
2024-02-20 11:27:10 +00:00
rpc SessionCreate (SessionCreateRequest) returns (SessionCreateResponse) {}
}
2024-02-22 20:09:25 +00:00
message InstantiateRequest {}
message InstantiateResponse {
string message = 1;
}
2024-02-20 11:27:10 +00:00
message SessionCreateRequest {}
message SessionCreateResponse {
string message = 1;
}