Browse Source

Switch back to miekg/dns

(prepping for using godeps)
Ask Bjørn Hansen 10 years ago
parent
commit
dab55559fd
7 changed files with 7 additions and 7 deletions
  1. 1 1
      picker.go
  2. 1 1
      serve.go
  3. 1 1
      serve_test.go
  4. 1 1
      zone.go
  5. 1 1
      zone_test.go
  6. 1 1
      zones.go
  7. 1 1
      zones_test.go

+ 1 - 1
picker.go

@@ -3,7 +3,7 @@ package main
 import (
 import (
 	"math/rand"
 	"math/rand"
 
 
-	"github.com/abh/dns"
+	"github.com/miekg/dns"
 )
 )
 
 
 func (label *Label) Picker(qtype uint16, max int) Records {
 func (label *Label) Picker(qtype uint16, max int) Records {

+ 1 - 1
serve.go

@@ -10,7 +10,7 @@ import (
 	"strings"
 	"strings"
 	"time"
 	"time"
 
 
-	"github.com/abh/dns"
+	"github.com/miekg/dns"
 	"github.com/rcrowley/go-metrics"
 	"github.com/rcrowley/go-metrics"
 )
 )
 
 

+ 1 - 1
serve_test.go

@@ -5,7 +5,7 @@ import (
 	"strings"
 	"strings"
 	"time"
 	"time"
 
 
-	"github.com/abh/dns"
+	"github.com/miekg/dns"
 	. "gopkg.in/check.v1"
 	. "gopkg.in/check.v1"
 )
 )
 
 

+ 1 - 1
zone.go

@@ -4,7 +4,7 @@ import (
 	"strings"
 	"strings"
 	"time"
 	"time"
 
 
-	"github.com/abh/dns"
+	"github.com/miekg/dns"
 	"github.com/rcrowley/go-metrics"
 	"github.com/rcrowley/go-metrics"
 )
 )
 
 

+ 1 - 1
zone_test.go

@@ -1,7 +1,7 @@
 package main
 package main
 
 
 import (
 import (
-	"github.com/abh/dns"
+	"github.com/miekg/dns"
 	. "gopkg.in/check.v1"
 	. "gopkg.in/check.v1"
 )
 )
 
 

+ 1 - 1
zones.go

@@ -14,8 +14,8 @@ import (
 	"strings"
 	"strings"
 	"time"
 	"time"
 
 
-	"github.com/abh/dns"
 	"github.com/abh/errorutil"
 	"github.com/abh/errorutil"
+	"github.com/miekg/dns"
 )
 )
 
 
 // Zones maps domain names to zone data
 // Zones maps domain names to zone data

+ 1 - 1
zones_test.go

@@ -6,7 +6,7 @@ import (
 	"os"
 	"os"
 	"testing"
 	"testing"
 
 
-	"github.com/abh/dns"
+	"github.com/miekg/dns"
 	. "gopkg.in/check.v1"
 	. "gopkg.in/check.v1"
 )
 )