12 lines
282 B
Protocol Buffer
12 lines
282 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "git.itzana.me/strafesnet/go-grpc/bot_analyzer";
|
|
|
|
package bot_analyzer;
|
|
|
|
service BotAnalyzer { rpc Analyze(DownloadUrl) returns (AnalysisResponse); }
|
|
|
|
message DownloadUrl { string Url = 1; }
|
|
|
|
message AnalysisResponse { string Analysis = 1; }
|