testing.proto 449 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package host;
  3. option go_package = "github.com/cline/grpc-go/host";
  4. option java_multiple_files = true;
  5. option java_package = "bot.cline.host.proto";
  6. // This is for use in integration tests to get the contents of the webview.
  7. service TestingService {
  8. rpc getWebviewHtml(GetWebviewHtmlRequest) returns (GetWebviewHtmlResponse);
  9. }
  10. message GetWebviewHtmlRequest {}
  11. message GetWebviewHtmlResponse {
  12. optional string html = 1;
  13. }