Reorganise ready to split into modules

This commit is contained in:
Laurence Withers 2019-04-12 09:07:17 +01:00
parent 84ea7c3673
commit fdd1990e89
8 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/lwithers/htpack/internal/packed" "github.com/lwithers/htpack/packed"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -7,7 +7,7 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/lwithers/htpack/packer" "github.com/lwithers/htpack/cmd/htpacker/packer"
"github.com/spf13/cobra" "github.com/spf13/cobra"
yaml "gopkg.in/yaml.v2" yaml "gopkg.in/yaml.v2"
) )

View File

@ -12,7 +12,7 @@ import (
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
"github.com/foobaz/go-zopfli/zopfli" "github.com/foobaz/go-zopfli/zopfli"
"github.com/lwithers/htpack/internal/packed" "github.com/lwithers/htpack/packed"
"github.com/lwithers/pkg/writefile" "github.com/lwithers/pkg/writefile"
) )

View File

@ -9,7 +9,7 @@ import (
"path/filepath" "path/filepath"
"strings" "strings"
"github.com/lwithers/htpack/packer" "github.com/lwithers/htpack/cmd/htpacker/packer"
"github.com/spf13/cobra" "github.com/spf13/cobra"
yaml "gopkg.in/yaml.v2" yaml "gopkg.in/yaml.v2"
) )

View File

@ -9,7 +9,7 @@ import (
"strings" "strings"
"time" "time"
"github.com/lwithers/htpack/internal/packed" "github.com/lwithers/htpack/packed"
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
) )