use full-qualified name as module

This commit is contained in:
Dimitri Herzog 2021-08-25 22:06:34 +02:00
parent 010275b880
commit 919512959b
60 changed files with 161 additions and 135 deletions

View File

@ -1,12 +1,13 @@
package api package api
import ( import (
"blocky/util"
"encoding/json" "encoding/json"
"net/http" "net/http"
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/util"
"github.com/go-chi/chi" "github.com/go-chi/chi"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
) )

View File

@ -1,11 +1,12 @@
package api package api
import ( import (
. "blocky/helpertest"
"encoding/json" "encoding/json"
"net/http" "net/http"
"time" "time"
. "github.com/0xERR0R/blocky/helpertest"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,9 +1,9 @@
package api_test package api_test
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,14 +1,14 @@
package cmd package cmd
import ( import (
"blocky/api"
"blocky/util"
"encoding/json" "encoding/json"
"fmt" "fmt"
"net/http" "net/http"
"strings" "strings"
"blocky/log" "github.com/0xERR0R/blocky/api"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -1,13 +1,14 @@
package cmd package cmd
import ( import (
"blocky/api"
"encoding/json" "encoding/json"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
"net/url" "net/url"
"strconv" "strconv"
"github.com/0xERR0R/blocky/api"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,9 +1,9 @@
package cmd package cmd
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,11 +1,12 @@
package cmd package cmd
import ( import (
"blocky/api"
"blocky/log"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"github.com/0xERR0R/blocky/api"
"github.com/0xERR0R/blocky/log"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -1,14 +1,14 @@
package cmd package cmd
import ( import (
"blocky/api"
"blocky/util"
"bytes" "bytes"
"encoding/json" "encoding/json"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"blocky/log" "github.com/0xERR0R/blocky/api"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/spf13/cobra" "github.com/spf13/cobra"

View File

@ -1,11 +1,12 @@
package cmd package cmd
import ( import (
"blocky/api"
"encoding/json" "encoding/json"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
"github.com/0xERR0R/blocky/api"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,14 +1,15 @@
package cmd package cmd
import ( import (
"blocky/config"
"blocky/log"
"blocky/util"
"fmt" "fmt"
"os" "os"
"strconv" "strconv"
"strings" "strings"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -1,7 +1,7 @@
package cmd package cmd
import ( import (
"blocky/log" "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,17 +1,17 @@
package cmd package cmd
import ( import (
"blocky/config"
"blocky/evt"
"blocky/server"
"blocky/util"
"net/http" "net/http"
"os" "os"
"os/signal" "os/signal"
"syscall" "syscall"
"time" "time"
"blocky/log" "github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/evt"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/server"
"github.com/0xERR0R/blocky/util"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -1,9 +1,10 @@
package cmd package cmd
import ( import (
"blocky/config"
"time" "time"
"github.com/0xERR0R/blocky/config"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
) )

View File

@ -1,9 +1,9 @@
package cmd package cmd
import ( import (
"blocky/util"
"fmt" "fmt"
"github.com/0xERR0R/blocky/util"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -10,7 +10,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"blocky/log" "github.com/0xERR0R/blocky/log"
"gopkg.in/yaml.v2" "gopkg.in/yaml.v2"
) )

View File

@ -1,9 +1,9 @@
package config package config
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,11 +1,11 @@
package config package config
import ( import (
. "blocky/log"
"io/ioutil" "io/ioutil"
"net" "net"
"os" "os"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table" . "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

2
go.mod
View File

@ -1,4 +1,4 @@
module blocky module github.com/0xERR0R/blocky
go 1.16 go 1.16

View File

@ -8,7 +8,7 @@ import (
"net/http/httptest" "net/http/httptest"
"os" "os"
"blocky/log" "github.com/0xERR0R/blocky/log"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/onsi/gomega/types" "github.com/onsi/gomega/types"

View File

@ -1,8 +1,6 @@
package lists package lists
import ( import (
"blocky/evt"
"blocky/util"
"bufio" "bufio"
"errors" "errors"
"fmt" "fmt"
@ -15,7 +13,9 @@ import (
"sync" "sync"
"time" "time"
"blocky/log" "github.com/0xERR0R/blocky/evt"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -1,15 +1,15 @@
package lists package lists
import ( import (
"blocky/evt"
. "blocky/helpertest"
"net/http" "net/http"
"net/http/httptest"
"os"
"sync/atomic" "sync/atomic"
"time" "time"
"net/http/httptest" "github.com/0xERR0R/blocky/evt"
"os"
. "github.com/0xERR0R/blocky/helpertest"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,9 +1,10 @@
package lists package lists
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,8 +1,9 @@
package main package main
import ( import (
"blocky/cmd"
"os" "os"
"github.com/0xERR0R/blocky/cmd"
) )
func main() { func main() {

View File

@ -1,7 +1,7 @@
package metrics package metrics
import ( import (
"blocky/config" "github.com/0xERR0R/blocky/config"
"github.com/go-chi/chi" "github.com/go-chi/chi"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"

View File

@ -1,12 +1,12 @@
package metrics package metrics
import ( import (
"blocky/evt" "fmt"
"blocky/lists"
"blocky/util"
"time" "time"
"fmt" "github.com/0xERR0R/blocky/evt"
"github.com/0xERR0R/blocky/lists"
"github.com/0xERR0R/blocky/util"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
) )

View File

@ -1,18 +1,18 @@
package resolver package resolver
import ( import (
"blocky/api"
"blocky/config"
"blocky/evt"
"blocky/lists"
"blocky/util"
"fmt" "fmt"
"net" "net"
"sort" "sort"
"strings" "strings"
"time" "time"
"blocky/log" "github.com/0xERR0R/blocky/api"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/evt"
"github.com/0xERR0R/blocky/lists"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"

View File

@ -1,12 +1,12 @@
package resolver package resolver
import ( import (
"blocky/config" "github.com/0xERR0R/blocky/config"
. "blocky/evt" . "github.com/0xERR0R/blocky/evt"
. "blocky/helpertest" . "github.com/0xERR0R/blocky/helpertest"
"blocky/lists" "github.com/0xERR0R/blocky/lists"
. "blocky/log" . "github.com/0xERR0R/blocky/log"
"blocky/util" "github.com/0xERR0R/blocky/util"
"os" "os"
"time" "time"

View File

@ -4,9 +4,9 @@ import (
"fmt" "fmt"
"time" "time"
"blocky/config" "github.com/0xERR0R/blocky/config"
"blocky/evt" "github.com/0xERR0R/blocky/evt"
"blocky/util" "github.com/0xERR0R/blocky/util"
"github.com/0xERR0R/go-cache" "github.com/0xERR0R/go-cache"
"github.com/miekg/dns" "github.com/miekg/dns"

View File

@ -3,10 +3,10 @@ package resolver
import ( import (
"time" "time"
"blocky/config" "github.com/0xERR0R/blocky/config"
. "blocky/evt" . "github.com/0xERR0R/blocky/evt"
. "blocky/helpertest" . "github.com/0xERR0R/blocky/helpertest"
"blocky/util" "github.com/0xERR0R/blocky/util"
"github.com/0xERR0R/go-cache" "github.com/0xERR0R/go-cache"
"github.com/miekg/dns" "github.com/miekg/dns"

View File

@ -1,13 +1,14 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"fmt" "fmt"
"net" "net"
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/0xERR0R/go-cache" "github.com/0xERR0R/go-cache"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"

View File

@ -1,12 +1,13 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"errors" "errors"
"fmt" "fmt"
"net" "net"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,11 +1,12 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"fmt" "fmt"
"strings" "strings"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -1,10 +1,10 @@
package resolver package resolver
import ( import (
"blocky/config" "github.com/0xERR0R/blocky/config"
. "blocky/helpertest" . "github.com/0xERR0R/blocky/helpertest"
"blocky/log" "github.com/0xERR0R/blocky/log"
"blocky/util" "github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"

View File

@ -1,12 +1,13 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"fmt" "fmt"
"net" "net"
"strings" "strings"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -1,10 +1,10 @@
package resolver package resolver
import ( import (
"blocky/config"
. "blocky/helpertest"
"net" "net"
"github.com/0xERR0R/blocky/config"
. "github.com/0xERR0R/blocky/helpertest"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,7 +1,7 @@
package resolver package resolver
import ( import (
"blocky/util" "github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"

View File

@ -1,12 +1,13 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/metrics"
"fmt" "fmt"
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/metrics"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
) )

View File

@ -1,9 +1,10 @@
package resolver package resolver
import ( import (
"blocky/config"
"errors" "errors"
"github.com/0xERR0R/blocky/config"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,8 +1,6 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"io/ioutil" "io/ioutil"
"net" "net"
"net/http" "net/http"
@ -10,6 +8,9 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/stretchr/testify/mock" "github.com/stretchr/testify/mock"
) )

View File

@ -1,13 +1,14 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"fmt" "fmt"
"math" "math"
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/mroth/weightedrand" "github.com/mroth/weightedrand"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -1,13 +1,13 @@
package resolver package resolver
import ( import (
"blocky/config"
. "blocky/helpertest"
. "blocky/log"
"blocky/util"
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/config"
. "github.com/0xERR0R/blocky/helpertest"
. "github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,8 +1,6 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"encoding/csv" "encoding/csv"
"fmt" "fmt"
"io" "io"
@ -13,6 +11,9 @@ import (
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -1,9 +1,6 @@
package resolver package resolver
import ( import (
"blocky/config"
. "blocky/log"
"blocky/util"
"bufio" "bufio"
"encoding/csv" "encoding/csv"
"errors" "errors"
@ -14,6 +11,10 @@ import (
"path/filepath" "path/filepath"
"time" "time"
"github.com/0xERR0R/blocky/config"
. "github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,13 +1,14 @@
package resolver package resolver
import ( import (
"blocky/log"
"blocky/util"
"fmt" "fmt"
"net" "net"
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -1,9 +1,10 @@
package resolver_test package resolver_test
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,7 +1,7 @@
package resolver package resolver
import ( import (
"blocky/config" "github.com/0xERR0R/blocky/config"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,11 +1,12 @@
package resolver package resolver
import ( import (
"blocky/stats"
"blocky/util"
"fmt" "fmt"
"strings" "strings"
"github.com/0xERR0R/blocky/stats"
"github.com/0xERR0R/blocky/util"
"github.com/jedib0t/go-pretty/table" "github.com/jedib0t/go-pretty/table"
"github.com/miekg/dns" "github.com/miekg/dns"
) )

View File

@ -1,7 +1,7 @@
package resolver package resolver
import ( import (
"blocky/util" "github.com/0xERR0R/blocky/util"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,8 +1,6 @@
package resolver package resolver
import ( import (
"blocky/config"
"blocky/util"
"bytes" "bytes"
"errors" "errors"
"fmt" "fmt"
@ -12,6 +10,9 @@ import (
"strconv" "strconv"
"time" "time"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -1,14 +1,14 @@
package resolver package resolver
import ( import (
"blocky/config"
. "blocky/helpertest"
"blocky/util"
"crypto/tls" "crypto/tls"
"fmt" "fmt"
"net/http" "net/http"
"time" "time"
"github.com/0xERR0R/blocky/config"
. "github.com/0xERR0R/blocky/helpertest"
"github.com/0xERR0R/blocky/util"
"github.com/miekg/dns" "github.com/miekg/dns"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,20 +1,20 @@
package server package server
import ( import (
"blocky/api" "fmt"
"blocky/config" "net"
"blocky/log"
"blocky/metrics"
"blocky/resolver"
"net/http" "net/http"
"runtime" "runtime"
"runtime/debug" "runtime/debug"
"strings" "strings"
"time" "time"
"blocky/util" "github.com/0xERR0R/blocky/api"
"fmt" "github.com/0xERR0R/blocky/config"
"net" "github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/metrics"
"github.com/0xERR0R/blocky/resolver"
"github.com/0xERR0R/blocky/util"
"github.com/go-chi/chi" "github.com/go-chi/chi"
"github.com/miekg/dns" "github.com/miekg/dns"

View File

@ -1,12 +1,6 @@
package server package server
import ( import (
"blocky/api"
"blocky/config"
"blocky/log"
"blocky/resolver"
"blocky/util"
"blocky/web"
"encoding/base64" "encoding/base64"
"encoding/json" "encoding/json"
"fmt" "fmt"
@ -16,6 +10,13 @@ import (
"net/http" "net/http"
"strings" "strings"
"github.com/0xERR0R/blocky/api"
"github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/resolver"
"github.com/0xERR0R/blocky/util"
"github.com/0xERR0R/blocky/web"
"github.com/go-chi/chi" "github.com/go-chi/chi"
"github.com/go-chi/chi/middleware" "github.com/go-chi/chi/middleware"
"github.com/go-chi/cors" "github.com/go-chi/cors"

View File

@ -1,9 +1,9 @@
package server package server
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,12 +1,6 @@
package server package server
import ( import (
"blocky/api"
"blocky/config"
. "blocky/helpertest"
. "blocky/log"
"blocky/resolver"
"blocky/util"
"bytes" "bytes"
"encoding/base64" "encoding/base64"
"encoding/json" "encoding/json"
@ -16,6 +10,13 @@ import (
"strings" "strings"
"time" "time"
"github.com/0xERR0R/blocky/api"
"github.com/0xERR0R/blocky/config"
. "github.com/0xERR0R/blocky/helpertest"
. "github.com/0xERR0R/blocky/log"
"github.com/0xERR0R/blocky/resolver"
"github.com/0xERR0R/blocky/util"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -1,10 +1,11 @@
package stats package stats
import ( import (
"blocky/util"
"strings" "strings"
"sync" "sync"
"time" "time"
"github.com/0xERR0R/blocky/util"
) )
const ( const (

View File

@ -1,9 +1,9 @@
package stats package stats
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,8 +1,8 @@
package util package util
import ( import (
"blocky/config" "github.com/0xERR0R/blocky/config"
"blocky/log" "github.com/0xERR0R/blocky/log"
"context" "context"
"fmt" "fmt"

View File

@ -1,7 +1,6 @@
package util package util
import ( import (
"blocky/config"
"encoding/binary" "encoding/binary"
"fmt" "fmt"
"net" "net"
@ -10,7 +9,8 @@ import (
"sort" "sort"
"strings" "strings"
"blocky/log" "github.com/0xERR0R/blocky/config"
"github.com/0xERR0R/blocky/log"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"

View File

@ -1,7 +1,6 @@
package util package util
import ( import (
. "blocky/log"
"errors" "errors"
"fmt" "fmt"
"net" "net"
@ -11,6 +10,7 @@ import (
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/sirupsen/logrus/hooks/test" "github.com/sirupsen/logrus/hooks/test"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )

View File

@ -1,9 +1,9 @@
package util package util
import ( import (
. "blocky/log"
"testing" "testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
) )