Skip to content

Commit

Permalink
update import paths after repo rename
Browse files Browse the repository at this point in the history
  • Loading branch information
campoy authored and erizocosmico committed Aug 27, 2018
1 parent ca76835 commit 0118802
Show file tree
Hide file tree
Showing 18 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions cmd/srcd-server/engine/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

"github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/docker"
"github.com/src-d/engine/api"
"github.com/src-d/engine/docker"
)

// Component to be run.
Expand Down
2 changes: 1 addition & 1 deletion cmd/srcd-server/engine/drivers.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
drivers "github.com/bblfsh/bblfshd/daemon/protocol"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/src-d/engine-cli/api"
"github.com/src-d/engine/api"
"google.golang.org/grpc"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/srcd-server/engine/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"crypto/sha1"
"encoding/hex"

api "github.com/src-d/engine-cli/api"
api "github.com/src-d/engine/api"
)

var _ api.EngineServer = new(Server)
Expand Down
6 changes: 3 additions & 3 deletions cmd/srcd-server/engine/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"github.com/docker/docker/api/types/container"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/components"
"github.com/src-d/engine-cli/docker"
"github.com/src-d/engine/api"
"github.com/src-d/engine/components"
"github.com/src-d/engine/docker"
bblfsh "gopkg.in/bblfsh/client-go.v2"
"gopkg.in/bblfsh/client-go.v2/tools"
"gopkg.in/bblfsh/sdk.v1/uast"
Expand Down
6 changes: 3 additions & 3 deletions cmd/srcd-server/engine/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"github.com/go-sql-driver/mysql"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/components"
"github.com/src-d/engine-cli/docker"
"github.com/src-d/engine/api"
"github.com/src-d/engine/components"
"github.com/src-d/engine/docker"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions cmd/srcd-server/engine/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/docker/docker/api/types/container"
"github.com/sirupsen/logrus"
"github.com/src-d/engine-cli/components"
"github.com/src-d/engine-cli/docker"
"github.com/src-d/engine/components"
"github.com/src-d/engine/docker"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions cmd/srcd-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

flags "github.com/jessevdk/go-flags"
"github.com/sirupsen/logrus"
api "github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/cmd/srcd-server/engine"
api "github.com/src-d/engine/api"
"github.com/src-d/engine/cmd/srcd-server/engine"
grpc "google.golang.org/grpc"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/srcd/cmd/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"os"

"github.com/spf13/cobra"
"github.com/src-d/engine-cli/components"
"github.com/src-d/engine/components"
)

// componentsCmd represents the components command
Expand Down
4 changes: 2 additions & 2 deletions cmd/srcd/cmd/drivers.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
api "github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/cmd/srcd/daemon"
api "github.com/src-d/engine/api"
"github.com/src-d/engine/cmd/srcd/daemon"
)

var parseDriversListCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion cmd/srcd/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/src-d/engine-cli/cmd/srcd/daemon"
"github.com/src-d/engine/cmd/srcd/daemon"
)

// initCmd represents the init command
Expand Down
4 changes: 2 additions & 2 deletions cmd/srcd/cmd/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (

"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
api "github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/cmd/srcd/daemon"
api "github.com/src-d/engine/api"
"github.com/src-d/engine/cmd/srcd/daemon"
"gopkg.in/bblfsh/sdk.v1/uast"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/srcd/cmd/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
"github.com/chzyer/readline"
"github.com/olekukonko/tablewriter"
"github.com/spf13/cobra"
"github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/cmd/srcd/daemon"
"github.com/src-d/engine/api"
"github.com/src-d/engine/cmd/srcd/daemon"
)

// sqlCmd represents the sql command
Expand Down
4 changes: 2 additions & 2 deletions cmd/srcd/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (

"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
api "github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/cmd/srcd/daemon"
api "github.com/src-d/engine/api"
"github.com/src-d/engine/cmd/srcd/daemon"
)

const version = "0.0.1"
Expand Down
6 changes: 3 additions & 3 deletions cmd/srcd/cmd/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ import (
"os/signal"
"time"

"github.com/src-d/engine-cli/components"
api "github.com/src-d/engine/api"
"github.com/src-d/engine/cmd/srcd/daemon"
"github.com/src-d/engine/components"

"github.com/pkg/browser"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
api "github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/cmd/srcd/daemon"
)

var webCmd = &cobra.Command{
Expand Down
6 changes: 3 additions & 3 deletions cmd/srcd/daemon/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import (
"github.com/pkg/errors"
grpc "google.golang.org/grpc"

api "github.com/src-d/engine-cli/api"
"github.com/src-d/engine-cli/components"
"github.com/src-d/engine-cli/docker"
api "github.com/src-d/engine/api"
"github.com/src-d/engine/components"
"github.com/src-d/engine/docker"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/srcd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package main

import "github.com/src-d/engine-cli/cmd/srcd/cmd"
import "github.com/src-d/engine/cmd/srcd/cmd"

func main() {
cmd.Execute()
Expand Down
2 changes: 1 addition & 1 deletion components/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/docker/docker/api/types"
"github.com/docker/docker/client"
"github.com/src-d/engine-cli/docker"
"github.com/src-d/engine/docker"
)

var srcdNamespaces = []string{
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/src-d/engine-cli
module github.com/src-d/engine

require (
github.com/BurntSushi/toml v0.3.0 // indirect
Expand Down

0 comments on commit 0118802

Please sign in to comment.