cycles-quartz/core/quartz-proto/proto/quartz.proto

30 lines
586 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-27 23:59:25 +00:00
rpc SessionSetPubKey (SessionSetPubKeyRequest) returns (SessionSetPubKeyResponse) {}
2024-02-20 11:27:10 +00:00
}
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;
}
2024-02-27 23:59:25 +00:00
2024-02-29 14:54:56 +00:00
message SessionSetPubKeyRequest {
string message = 1;
}
2024-02-27 23:59:25 +00:00
message SessionSetPubKeyResponse {
string message = 1;
}