Skip to content

Commit

Permalink
fix: Fix the make build-go
Browse files Browse the repository at this point in the history
Signed-off-by: Shuchu Han <[email protected]>
  • Loading branch information
shuchu committed Oct 31, 2024
1 parent 3ddeb88 commit c5aaf98
Show file tree
Hide file tree
Showing 6 changed files with 262 additions and 0 deletions.
242 changes: 242 additions & 0 deletions go.sum

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions protos/feast/core/DataSource.proto
Original file line number Diff line number Diff line change
Expand Up @@ -268,3 +268,7 @@ message DataSource {
AthenaOptions athena_options = 35;
}
}

message DataSourceList {
repeated DataSource datasources = 1;
}
4 changes: 4 additions & 0 deletions protos/feast/core/Entity.proto
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,7 @@ message EntityMeta {
google.protobuf.Timestamp created_timestamp = 1;
google.protobuf.Timestamp last_updated_timestamp = 2;
}

message EntityList {
repeated Entity entities = 1;
}
4 changes: 4 additions & 0 deletions protos/feast/core/FeatureService.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,7 @@ message LoggingConfig {
map<string, string> config = 2;
}
}

message FeatureServiceList {
repeated FeatureService featureservices = 1;
}
4 changes: 4 additions & 0 deletions protos/feast/core/FeatureView.proto
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,7 @@ message MaterializationInterval {
google.protobuf.Timestamp start_time = 1;
google.protobuf.Timestamp end_time = 2;
}

message FeatureViewList {
repeated FeatureView featureviews = 1;
}
4 changes: 4 additions & 0 deletions protos/feast/core/OnDemandFeatureView.proto
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,7 @@ message UserDefinedFunction {
// The string representation of the udf
string body_text = 3;
}

message OnDemandFeatureViewList {
repeated OnDemandFeatureView ondemandfeatureviews = 1;
}

0 comments on commit c5aaf98

Please sign in to comment.