1 Commits

Author SHA1 Message Date
0773cba6c7 bot_analyzer: directly accept download url
All checks were successful
continuous-integration/drone/push Build is passing
2025-09-21 17:35:09 -07:00

View File

@@ -4,8 +4,8 @@ option go_package = "git.itzana.me/strafesnet/go-grpc/bot_analyzer";
package bot_analyzer;
service BotAnalyzer { rpc Analyze(FileID) returns (AnalysisResponse); }
service BotAnalyzer { rpc Analyze(DownloadUrl) returns (AnalysisResponse); }
message FileID { string FileID = 1; }
message DownloadUrl { string Url = 1; }
message AnalysisResponse { string Analysis = 1; }