Skip to content

Commit

Permalink
feat: added list integrations
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
  • Loading branch information
AlexsJones committed Sep 19, 2023
1 parent 055e07a commit 34da3b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions protobuf/schema/v1/schema.proto
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,14 @@ message Integrations {
Trivy trivy = 1;
}

message ListIntegrationsRequest {}

message ListIntegrationsResponse {
repeated string integrations = 1;
}
service ServerService {
rpc Analyze(AnalyzeRequest) returns (AnalyzeResponse) {}
rpc AddConfig(AddConfigRequest) returns (AddConfigResponse) {}
rpc RemoveConfig(RemoveConfigRequest) returns (RemoveConfigResponse) {}
rpc ListIntegrations(ListIntegrationsRequest) returns (ListIntegrationsResponse) {}
}

0 comments on commit 34da3b6

Please sign in to comment.