bot_analyzer: directly accept download url
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-09-21 17:35:09 -07:00
parent 63ad706dd9
commit 0773cba6c7

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