mirror of
https://github.com/cline/cline.git
synced 2026-09-24 23:20:16 +08:00
Add a linter check for proto files to avoid issues like https://github.com/cline/cline/pull/7054 Format the proto files while linting
19 lines
449 B
Protocol Buffer
19 lines
449 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package host;
|
|
|
|
option go_package = "github.com/cline/grpc-go/host";
|
|
option java_multiple_files = true;
|
|
option java_package = "bot.cline.host.proto";
|
|
|
|
// This is for use in integration tests to get the contents of the webview.
|
|
service TestingService {
|
|
rpc getWebviewHtml(GetWebviewHtmlRequest) returns (GetWebviewHtmlResponse);
|
|
}
|
|
|
|
message GetWebviewHtmlRequest {}
|
|
|
|
message GetWebviewHtmlResponse {
|
|
optional string html = 1;
|
|
}
|