refactor: move config and cmd to internal
continuous-integration/drone/push Build is failing Details

They don't need to be exposed to the outside world
This commit is contained in:
Sam Therapy 2023-04-18 16:36:37 +02:00
parent 329d81c001
commit ed0cdf6a6f
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
16 changed files with 8 additions and 8 deletions

View File

@ -6,7 +6,7 @@ import (
"testing"
"time"
cli "dns.froth.zone/awl/cmd"
cli "dns.froth.zone/awl/internal/cmd"
"dns.froth.zone/awl/pkg/util"
"gotest.tools/v3/assert"
)

View File

@ -5,7 +5,7 @@ package cli_test
import (
"testing"
cli "dns.froth.zone/awl/cmd"
cli "dns.froth.zone/awl/internal/cmd"
"dns.froth.zone/awl/pkg/util"
"gotest.tools/v3/assert"
)

View File

@ -7,7 +7,7 @@ import (
"math/rand"
"strings"
"dns.froth.zone/awl/conf"
"dns.froth.zone/awl/internal/conf"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"golang.org/x/net/idna"

View File

@ -5,7 +5,7 @@ package cli_test
import (
"testing"
cli "dns.froth.zone/awl/cmd"
cli "dns.froth.zone/awl/internal/cmd"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"gotest.tools/v3/assert"

View File

@ -7,7 +7,7 @@ import (
"runtime"
"testing"
"dns.froth.zone/awl/conf"
"dns.froth.zone/awl/internal/conf"
"gotest.tools/v3/assert"
)

View File

@ -9,7 +9,7 @@ import (
"runtime"
"testing"
"dns.froth.zone/awl/conf"
"dns.froth.zone/awl/internal/conf"
"gotest.tools/v3/assert"
)

View File

@ -7,7 +7,7 @@ import (
"runtime"
"testing"
"dns.froth.zone/awl/conf"
"dns.froth.zone/awl/internal/conf"
"gotest.tools/v3/assert"
)

View File

@ -10,7 +10,7 @@ import (
"strings"
"time"
cli "dns.froth.zone/awl/cmd"
cli "dns.froth.zone/awl/internal/cmd"
"dns.froth.zone/awl/pkg/query"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"