Insight/pkg/proto/insight.proto

18 lines
284 B
Protocol Buffer
Raw Permalink Normal View History

2025-01-30 01:19:14 +08:00
syntax = "proto3";
option go_package = ".;proto";
package proto;
service InsightService {
rpc GenerateInsight(InsightRequest) returns (InsightResponse) {}
}
message InsightRequest {
string source = 1;
uint64 user_id = 2;
}
message InsightResponse {
string response = 1;
}