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"
"os"
"github.com/lwithers/htpack/internal/packed"
"github.com/lwithers/htpack/packed"
"github.com/spf13/cobra"
)

View File

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

View File

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

View File

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

View File

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