cline/proto/checkpoints.proto
Sarah Fortune 60c210b017
Add java options to protobufs (#3141)
Set the java class path.
2025-04-27 09:25:37 -10:00

20 lines
425 B
Protocol Buffer

syntax = "proto3";
package cline;
option java_package = "bot.cline.proto";
option java_multiple_files = true;
import "common.proto";
service CheckpointsService {
rpc checkpointDiff(Int64Request) returns (Empty);
rpc checkpointRestore(CheckpointRestoreRequest) returns (Empty);
}
message CheckpointRestoreRequest {
Metadata metadata = 1;
int64 number = 2;
string restore_type = 3;
optional int64 offset = 4;
}