feat: change import URL
continuous-integration/drone/push Build is passing Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2023-02-17 19:18:58 +01:00
parent 00ec4ef893
commit e782c9cb23
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
33 changed files with 47 additions and 47 deletions

View File

@ -62,7 +62,7 @@ Dependencies:
Using `go install`:
```sh
go install git.froth.zone/sam/awl@latest
go install dns.froth.zone/awl@latest
```
Using the makefile:

View File

@ -10,7 +10,7 @@ import (
"strings"
"time"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
flag "github.com/stefansundin/go-zflag"
)

View File

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

View File

@ -8,7 +8,7 @@ import (
"strings"
"time"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
)
// ParseDig parses commands from the popular DNS tool dig.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

2
go.mod
View File

@ -1,4 +1,4 @@
module git.froth.zone/sam/awl
module dns.froth.zone/awl
go 1.18

View File

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

View File

@ -7,7 +7,7 @@ import (
"testing"
"time"
"git.froth.zone/sam/awl/pkg/logawl"
"dns.froth.zone/awl/pkg/logawl"
"gotest.tools/v3/assert"
)

View File

@ -11,7 +11,7 @@ import (
"strings"
"time"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"golang.org/x/net/idna"
"gopkg.in/yaml.v3"

View File

@ -5,8 +5,8 @@ package query_test
import (
"testing"
"git.froth.zone/sam/awl/pkg/query"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/query"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"gotest.tools/v3/assert"
)

View File

@ -6,8 +6,8 @@ import (
"fmt"
"strconv"
"git.froth.zone/sam/awl/pkg/resolvers"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/resolvers"
"dns.froth.zone/awl/pkg/util"
"github.com/dchest/uniuri"
"github.com/miekg/dns"
)

View File

@ -5,8 +5,8 @@ package query_test
import (
"testing"
"git.froth.zone/sam/awl/pkg/query"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/query"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"gotest.tools/v3/assert"
)

View File

@ -6,7 +6,7 @@ import (
"strings"
"time"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"golang.org/x/net/idna"
)

View File

@ -6,7 +6,7 @@ import (
"fmt"
"time"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/ameshkov/dnscrypt/v2"
"github.com/miekg/dns"
)

View File

@ -6,8 +6,8 @@ import (
"errors"
"testing"
"git.froth.zone/sam/awl/pkg/query"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/query"
"dns.froth.zone/awl/pkg/util"
"github.com/ameshkov/dnscrypt/v2"
"github.com/miekg/dns"
"gotest.tools/v3/assert"

View File

@ -10,7 +10,7 @@ import (
"net/http"
"time"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
)

View File

@ -6,8 +6,8 @@ import (
"errors"
"testing"
"git.froth.zone/sam/awl/pkg/query"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/query"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"gotest.tools/v3/assert"
)

View File

@ -9,7 +9,7 @@ import (
"io"
"time"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"github.com/quic-go/quic-go"
)

View File

@ -7,7 +7,7 @@ package resolvers
import (
"errors"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
)

View File

@ -7,8 +7,8 @@ import (
"testing"
"time"
"git.froth.zone/sam/awl/pkg/query"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/query"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"gotest.tools/v3/assert"
)

View File

@ -7,7 +7,7 @@ import (
"fmt"
"net"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
)

View File

@ -8,8 +8,8 @@ import (
"testing"
"time"
"git.froth.zone/sam/awl/pkg/query"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/query"
"dns.froth.zone/awl/pkg/util"
"github.com/ameshkov/dnscrypt/v2"
"github.com/miekg/dns"
"gotest.tools/v3/assert"

View File

@ -7,7 +7,7 @@ import (
"strconv"
"strings"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
)

View File

@ -2,7 +2,7 @@
package util
import "git.froth.zone/sam/awl/pkg/logawl"
import "dns.froth.zone/awl/pkg/logawl"
// InitLogger initializes the logawl instance.
func InitLogger(verbosity int) (log *logawl.Logger) {

View File

@ -5,8 +5,8 @@ package util_test
import (
"testing"
"git.froth.zone/sam/awl/pkg/logawl"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/logawl"
"dns.froth.zone/awl/pkg/util"
"gotest.tools/v3/assert"
)

View File

@ -6,7 +6,7 @@ import (
"fmt"
"net"
"git.froth.zone/sam/awl/pkg/logawl"
"dns.froth.zone/awl/pkg/logawl"
"github.com/miekg/dns"
)

View File

@ -5,7 +5,7 @@ package util_test
import (
"testing"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"gotest.tools/v3/assert"
)

View File

@ -5,7 +5,7 @@ package util_test
import (
"testing"
"git.froth.zone/sam/awl/pkg/util"
"dns.froth.zone/awl/pkg/util"
"github.com/miekg/dns"
"gotest.tools/v3/assert"
)