1 Commits

Author SHA1 Message Date
63ad706dd9 bot_analyzer
All checks were successful
continuous-integration/drone/push Build is passing
2025-09-21 17:02:53 -07:00

11
bot_analyzer.proto Normal file
View File

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