Skip to content

Commit 9ee4605

Browse files
committed
fix: Fix the make build-go
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
1 parent d371247 commit 9ee4605

File tree

6 files changed

+262
-0
lines changed

6 files changed

+262
-0
lines changed

go.sum

Lines changed: 242 additions & 0 deletions
Large diffs are not rendered by default.

protos/feast/core/DataSource.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,3 +268,7 @@ message DataSource {
268268
AthenaOptions athena_options = 35;
269269
}
270270
}
271+
272+
message DataSourceList {
273+
repeated DataSource datasources = 1;
274+
}

protos/feast/core/Entity.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,7 @@ message EntityMeta {
5858
google.protobuf.Timestamp created_timestamp = 1;
5959
google.protobuf.Timestamp last_updated_timestamp = 2;
6060
}
61+
62+
message EntityList {
63+
repeated Entity entities = 1;
64+
}

protos/feast/core/FeatureService.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,7 @@ message LoggingConfig {
9696
map<string, string> config = 2;
9797
}
9898
}
99+
100+
message FeatureServiceList {
101+
repeated FeatureService featureservices = 1;
102+
}

protos/feast/core/FeatureView.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,7 @@ message MaterializationInterval {
9292
google.protobuf.Timestamp start_time = 1;
9393
google.protobuf.Timestamp end_time = 2;
9494
}
95+
96+
message FeatureViewList {
97+
repeated FeatureView featureviews = 1;
98+
}

protos/feast/core/OnDemandFeatureView.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,7 @@ message UserDefinedFunction {
100100
// The string representation of the udf
101101
string body_text = 3;
102102
}
103+
104+
message OnDemandFeatureViewList {
105+
repeated OnDemandFeatureView ondemandfeatureviews = 1;
106+
}

0 commit comments

Comments
 (0)