Skip to content

Commit 8cf5a4e

Browse files
author
zhilingc
committed
Change gopath to point to gojek repo
1 parent 7f0328c commit 8cf5a4e

39 files changed

+660
-600
lines changed

cli/feast/cmd/apply.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"io/ioutil"
2222
"path/filepath"
2323

24-
"github.com/gojektech/feast/cli/feast/pkg/parse"
25-
"github.com/gojektech/feast/protos/generated/go/feast/core"
24+
"github.com/gojek/feast/cli/feast/pkg/parse"
25+
"github.com/gojek/feast/protos/generated/go/feast/core"
2626

2727
"github.com/spf13/cobra"
2828
)

cli/feast/cmd/jobs.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ import (
2020
"fmt"
2121
"io/ioutil"
2222

23-
"github.com/gojektech/feast/cli/feast/pkg/parse"
24-
"github.com/gojektech/feast/cli/feast/pkg/printer"
25-
"github.com/gojektech/feast/protos/generated/go/feast/core"
23+
"github.com/gojek/feast/cli/feast/pkg/parse"
24+
"github.com/gojek/feast/cli/feast/pkg/printer"
25+
"github.com/gojek/feast/protos/generated/go/feast/core"
2626

2727
"github.com/spf13/cobra"
2828
)

cli/feast/cmd/list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"strings"
2323
"text/tabwriter"
2424

25-
"github.com/gojektech/feast/cli/feast/pkg/util"
26-
"github.com/gojektech/feast/protos/generated/go/feast/core"
25+
"github.com/gojek/feast/cli/feast/pkg/util"
26+
"github.com/gojek/feast/protos/generated/go/feast/core"
2727

2828
"github.com/golang/protobuf/ptypes/empty"
2929
"github.com/spf13/cobra"

cli/feast/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package main
1616

1717
import (
18-
"github.com/gojektech/feast/cli/feast/cmd"
18+
"github.com/gojek/feast/cli/feast/cmd"
1919
)
2020

2121
// Version is the Feast version

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-
"github.com/gojektech/feast/protos/generated/go/feast/specs"
27-
"github.com/gojektech/feast/protos/generated/go/feast/types"
26+
"github.com/gojek/feast/protos/generated/go/feast/specs"
27+
"github.com/gojek/feast/protos/generated/go/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-
"github.com/gojektech/feast/protos/generated/go/feast/specs"
23-
"github.com/gojektech/feast/protos/generated/go/feast/types"
22+
"github.com/gojek/feast/protos/generated/go/feast/specs"
23+
"github.com/gojek/feast/protos/generated/go/feast/types"
2424

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

cli/feast/pkg/printer/job.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"fmt"
1919
"strings"
2020

21-
"github.com/gojektech/feast/cli/feast/pkg/util"
22-
"github.com/gojektech/feast/protos/generated/go/feast/core"
21+
"github.com/gojek/feast/cli/feast/pkg/util"
22+
"github.com/gojek/feast/protos/generated/go/feast/core"
2323
)
2424

2525
// PrintJobDetail pretty prints the given job detail

protos/feast/core/CoreService.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import "google/protobuf/empty.proto";
2626

2727
option java_package = "feast.core";
2828
option java_outer_classname = "CoreServiceProto";
29-
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/core";
29+
option go_package = "github.com/gojek/feast/protos/generated/go/feast/core";
3030

3131
service CoreService {
3232
/*

protos/feast/core/JobService.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import "google/protobuf/timestamp.proto";
2424

2525
option java_package = "feast.core";
2626
option java_outer_classname = "JobServiceProto";
27-
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/core";
27+
option go_package = "github.com/gojek/feast/protos/generated/go/feast/core";
2828

2929
service JobService {
3030
// Submit a job to feast to run. Returns the job id.

protos/feast/core/UIService.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import "google/protobuf/timestamp.proto";
2727

2828
option java_package = "feast.core";
2929
option java_outer_classname = "UIServiceProto";
30-
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/core";
30+
option go_package = "github.com/gojek/feast/protos/generated/go/feast/core";
3131

3232
service UIService {
3333
/*

0 commit comments

Comments
 (0)