mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00
20 lines
425 B
Protocol Buffer
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;
|
|
}
|