Insight/pkg/proto/insight.proto
LittleSheep 771227a9ed
Some checks failed
release-nightly / build-docker (push) Has been cancelled
🎉 Initial Commit
2025-01-30 01:19:14 +08:00

18 lines
284 B
Protocol Buffer

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