Skip to content

Commit

Permalink
chore: fixed some bits
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Jones <[email protected]>
  • Loading branch information
AlexsJones committed Jan 31, 2024
1 parent 54bfc47 commit b1f9bd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions protobuf/schema/v1/analyzer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ syntax = "proto3";

package schema.v1;

import "schema/v1/server-service.proto";
import "server-service.proto";
option go_package = "schema/service/v1";


message AnalyzerRunRequest {

}

message AnalzyerRunResponse {
message AnalyzerRunResponse {
Result result = 1;
}

service AnalyzerService {
rpc Run(AnalyzerRunRequest) returns (AnalzyerRunResponse) {}
rpc Run(AnalyzerRunRequest) returns (AnalyzerRunResponse) {}
}

0 comments on commit b1f9bd3

Please sign in to comment.