mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
* checkIsImageURL protobus migration * changeset * rebase and move to web-content * cleanup * metadata * rename return message * removed old import, metadata
17 lines
288 B
Protocol Buffer
17 lines
288 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cline;
|
|
option java_package = "bot.cline.proto";
|
|
option java_multiple_files = true;
|
|
|
|
import "common.proto";
|
|
|
|
service WebContentService {
|
|
rpc checkIsImageUrl(StringRequest) returns (IsImageUrl);
|
|
}
|
|
|
|
message IsImageUrl {
|
|
bool is_image = 1;
|
|
string url = 2;
|
|
}
|