mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00
15 lines
299 B
Protocol Buffer
15 lines
299 B
Protocol Buffer
syntax = "proto3";
|
|
package cline;
|
|
|
|
import "common.proto";
|
|
|
|
service StateService {
|
|
rpc getLatestState(EmptyRequest) returns (State);
|
|
rpc subscribeToState(EmptyRequest) returns (stream State);
|
|
rpc toggleFavoriteModel(StringRequest) returns (Empty);
|
|
}
|
|
|
|
message State {
|
|
string state_json = 1;
|
|
}
|