Fix unsorted imports (#2561)

Imports should be sorted by Go coding convention
This commit is contained in:
Nguyen Quang Huy 2019-02-17 15:31:32 +07:00 committed by Miek Gieben
parent 8d09cb243f
commit 35982bd27d

View file

@ -5,8 +5,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/coredns/coredns/plugin/test"
"github.com/coredns/coredns/plugin/file" "github.com/coredns/coredns/plugin/file"
"github.com/coredns/coredns/plugin/test"
"github.com/miekg/dns" "github.com/miekg/dns"
) )