6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-15 11:05:17 +00:00

Refactor pkg directory back

This commit is contained in:
Grzegorz Dlugoszewski
2020-06-12 20:19:05 +02:00
parent 823a522a97
commit 33ca245d3a
16 changed files with 15 additions and 16 deletions

View File

@@ -2,12 +2,11 @@ package main
import (
"fmt"
"git-get/cfg"
"git-get/git"
"git-get/path"
"git-get/print"
"git-get/pkg/cfg"
"git-get/pkg/git"
"git-get/pkg/path"
"git-get/pkg/print"
"os"
pathpkg "path"
"github.com/spf13/cobra"

View File

@@ -2,7 +2,7 @@ package git
import (
"fmt"
"git-get/cfg"
"git-get/pkg/cfg"
"github.com/go-git/go-git/v5/plumbing"

View File

@@ -1,7 +1,7 @@
package git
import (
"git-get/cfg"
"git-get/pkg/cfg"
"sort"
"strings"

View File

@@ -2,7 +2,7 @@ package path
import (
"bufio"
"git-get/git"
"git-get/pkg/git"
"os"
"strings"

View File

@@ -2,8 +2,8 @@ package path
import (
"fmt"
"git-get/cfg"
"git-get/git"
"git-get/pkg/cfg"
"git-get/pkg/git"
"os"
"sort"
"strings"

View File

@@ -1,7 +1,7 @@
package path
import (
"git-get/cfg"
"git-get/pkg/cfg"
urlpkg "net/url"
"path"
"regexp"

View File

@@ -1,7 +1,7 @@
package path
import (
"git-get/cfg"
"git-get/pkg/cfg"
"testing"
)

View File

@@ -2,7 +2,7 @@ package print
import (
"fmt"
"git-get/git"
"git-get/pkg/git"
"path/filepath"
"strings"
)

View File

@@ -2,7 +2,7 @@ package print
import (
"fmt"
"git-get/git"
"git-get/pkg/git"
"strings"
)

View File

@@ -1,7 +1,7 @@
package print
import (
"git-get/git"
"git-get/pkg/git"
"path/filepath"
"strings"

View File

@@ -2,7 +2,7 @@ package print
import (
"fmt"
"git-get/git"
"git-get/pkg/git"
"strings"
"testing"
)