Skip to content

Commit

Permalink
resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
ak1ra24 committed Jan 30, 2020
1 parent c96ad22 commit f58d5f1
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/shell"
)

// buildCmd represents the build command
Expand Down
2 changes: 1 addition & 1 deletion cmd/conf.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// confCmd represents the conf command
Expand Down
2 changes: 1 addition & 1 deletion cmd/down.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// downCmd represents the down command
Expand Down
2 changes: 1 addition & 1 deletion cmd/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// execCmd represents the exec command
Expand Down
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/shell"
)

// initCmd represents the init command
Expand Down
2 changes: 1 addition & 1 deletion cmd/ps.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/shell"
)

// psCmd represents the ps command
Expand Down
2 changes: 1 addition & 1 deletion cmd/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/shell"
)

// pullCmd represents the pull command
Expand Down
4 changes: 2 additions & 2 deletions cmd/reconf.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// reconfCmd represents the reconf command
Expand Down
4 changes: 2 additions & 2 deletions cmd/reup.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// reupCmd represents the reup command
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/utils"

"github.com/spf13/viper"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// testCmd represents the test command
Expand Down
4 changes: 2 additions & 2 deletions cmd/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// upCmd represents the up command
Expand Down
4 changes: 2 additions & 2 deletions cmd/upconf.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"

"github.com/spf13/cobra"
"github.com/tinynetwork/tn/internal/pkg/shell"
"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/shell"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

// upconfCmd represents the upconf command
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/shell/shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
l "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"

"github.com/tinynetwork/tn/internal/pkg/utils"
"github.com/tinynetwork/tinet/internal/pkg/utils"
)

var log = l.New()
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

package main

import "github.com/tinynetwork/tn/cmd"
import "github.com/tinynetwork/tinet/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit f58d5f1

Please sign in to comment.