mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
20 lines
248 B
Protocol Buffer
20 lines
248 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sentiment;
|
|
|
|
option go_package = "./proto;sentiment";
|
|
|
|
service Sentiment {
|
|
rpc Analyze(Request) returns (Response) {};
|
|
}
|
|
|
|
message Request {
|
|
string text = 1;
|
|
string lang = 2;
|
|
}
|
|
|
|
message Response {
|
|
double score = 1;
|
|
}
|
|
|