-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Proto folder should mirror project structure
Signed-off-by: Finn Carroll <[email protected]>
- Loading branch information
1 parent
4021722
commit 7f4e887
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...main/proto/search/FetchSearchResult.proto → ...roto/search/fetch/FetchSearchResult.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
syntax = "proto3"; | ||
|
||
package org.opensearch.proto.search; | ||
package org.opensearch.proto.fetch; | ||
|
||
import "search/SearchHits.proto"; | ||
|
||
option java_outer_classname = "FetchSearchResultProtoDef"; | ||
|
||
message FetchSearchResultProto { | ||
SearchHitsProto hits = 1; | ||
org.opensearch.proto.search.SearchHitsProto hits = 1; | ||
int64 counter = 2; | ||
} |