Skip to content

Commit 5eb5c1d

Browse files
author
zhilingc
committed
Update go package to reflect new repository
1 parent 3fb8581 commit 5eb5c1d

5 files changed

Lines changed: 5 additions & 8 deletions

File tree

cli/feast/cmd/jobs.go

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

23-
"feast/cli/feast/pkg/parse"
24-
"feast/cli/feast/pkg/printer"
25-
23+
"github.com/gojektech/feast/cli/feast/pkg/parse"
24+
"github.com/gojektech/feast/cli/feast/pkg/printer"
2625
"github.com/gojektech/feast/go-feast-proto/feast/core"
2726

2827
"github.com/spf13/cobra"

cli/feast/cmd/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ package cmd
1717
import (
1818
"context"
1919
"errors"
20-
"feast/cli/feast/pkg/util"
2120
"fmt"
2221
"os"
2322
"strings"
2423
"text/tabwriter"
2524

25+
"github.com/gojektech/feast/cli/feast/pkg/util"
2626
"github.com/gojektech/feast/go-feast-proto/feast/core"
2727

2828
"github.com/golang/protobuf/ptypes/empty"

cli/feast/cmd/root.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package cmd
1616

1717
import (
18-
"fmt"
1918
"os"
2019

2120
"github.com/spf13/cobra"
@@ -42,7 +41,6 @@ func init() {
4241

4342
func handleErr(err error) {
4443
if err != nil {
45-
fmt.Println(err)
4644
os.Exit(1)
4745
}
4846
}

cli/feast/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
package main
1616

17-
import "feast/cli/feast/cmd"
17+
import "github.com/gojektech/feast/cli/feast/cmd"
1818

1919
func main() {
2020
cmd.Execute()

cli/feast/pkg/printer/job.go

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

1717
import (
18-
"feast/cli/feast/pkg/util"
1918
"fmt"
2019
"strings"
2120

21+
"github.com/gojektech/feast/cli/feast/pkg/util"
2222
"github.com/gojektech/feast/go-feast-proto/feast/core"
2323
)
2424

0 commit comments

Comments
 (0)