Skip to content

Commit

Permalink
tinet github path change: go.mod, cmd, internal
Browse files Browse the repository at this point in the history
  • Loading branch information
ak1ra24 committed Jan 29, 2020
1 parent 0e0973c commit 255e4e0
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ package cmd
import (
"log"

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

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

"github.com/ak1ra24/tn/internal/pkg/shell"
"github.com/spf13/cobra"
"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 @@ -5,8 +5,8 @@ import (
"fmt"
"log"

"github.com/ak1ra24/tn/internal/pkg/shell"
"github.com/spf13/cobra"
"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 @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

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

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

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

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

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

// 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 @@ -5,9 +5,9 @@ import (
"fmt"
"os"

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

"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

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

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

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

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

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

// upconfCmd represents the upconf command
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/ak1ra24/tn
module github.com/tinynetwork/tinet

go 1.13

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/ak1ra24/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/ak1ra24/tn/cmd"
import "github.com/tinynetwork/tinet/cmd"

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

0 comments on commit 255e4e0

Please sign in to comment.