Files
cline/proto/web_content.proto
T
canvrno 4565e067af [PROTOBUS] file checkIsImageUrl (#3109)
* checkIsImageURL protobus migration

* changeset

* rebase and move to web-content

* cleanup

* metadata

* rename return message

* removed old import, metadata
2025-05-01 16:11:58 -07:00

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;
}