Skip to content

Commit 04546dd

Browse files
author
zhilingc
committed
Update golang proto generation
1 parent b12f0cc commit 04546dd

39 files changed

+6355
-27
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ scratch*
3838
**/bin/
3939
dependency-reduced-pom.xml
4040

41-
# Generated proto files
42-
go-feast-proto/*
43-
4441
# govendor
4542
vendor
4643

cli/feast/cmd/jobs.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ import (
2222

2323
"feast/cli/feast/pkg/parse"
2424
"feast/cli/feast/pkg/printer"
25-
"feast/go-feast-proto/feast/core"
25+
26+
"github.com/gojektech/feast/go-feast-proto/feast/core"
2627

2728
"github.com/spf13/cobra"
2829
)

cli/feast/cmd/list.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ import (
1818
"context"
1919
"errors"
2020
"feast/cli/feast/pkg/util"
21-
"feast/go-feast-proto/feast/core"
2221
"fmt"
2322
"os"
2423
"strings"
2524
"text/tabwriter"
2625

26+
"github.com/gojektech/feast/go-feast-proto/feast/core"
27+
2728
"github.com/golang/protobuf/ptypes/empty"
2829
"github.com/spf13/cobra"
2930
)

cli/feast/cmd/register.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"io/ioutil"
2222
"path/filepath"
2323

24-
"feast/go-feast-proto/feast/core"
24+
"github.com/gojektech/feast/go-feast-proto/feast/core"
2525

2626
"feast/cli/feast/pkg/parse"
2727

cli/feast/pkg/parse/yaml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323

2424
"github.com/ghodss/yaml"
2525

26-
"feast/go-feast-proto/feast/specs"
27-
"feast/go-feast-proto/feast/types"
26+
"github.com/gojektech/feast/go-feast-proto/feast/specs"
27+
"github.com/gojektech/feast/go-feast-proto/feast/types"
2828
)
2929

3030
// YamlToFeatureSpec parses the given yaml and outputs the corresponding

cli/feast/pkg/parse/yaml_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919

2020
"github.com/golang/protobuf/ptypes/timestamp"
2121

22-
"feast/go-feast-proto/feast/specs"
23-
"feast/go-feast-proto/feast/types"
22+
"github.com/gojektech/feast/go-feast-proto/feast/specs"
23+
"github.com/gojektech/feast/go-feast-proto/feast/types"
2424

2525
"github.com/google/go-cmp/cmp"
2626
)

cli/feast/pkg/printer/job.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ package printer
1616

1717
import (
1818
"feast/cli/feast/pkg/util"
19-
"feast/go-feast-proto/feast/core"
2019
"fmt"
2120
"strings"
21+
22+
"github.com/gojektech/feast/go-feast-proto/feast/core"
2223
)
2324

2425
// PrintJobDetail pretty prints the given job detail

0 commit comments

Comments
 (0)