aboutsummaryrefslogtreecommitdiff
path: root/plugin/auto/setup.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/auto/setup.go')
-rw-r--r--plugin/auto/setup.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/auto/setup.go b/plugin/auto/setup.go
index 75966f8a0..7f673f915 100644
--- a/plugin/auto/setup.go
+++ b/plugin/auto/setup.go
@@ -10,9 +10,9 @@ import (
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
- "github.com/coredns/coredns/plugin/file"
"github.com/coredns/coredns/plugin/metrics"
"github.com/coredns/coredns/plugin/pkg/dnsutil"
+ "github.com/coredns/coredns/plugin/pkg/parse"
"github.com/coredns/coredns/plugin/proxy"
"github.com/mholt/caddy"
@@ -158,7 +158,7 @@ func autoParse(c *caddy.Controller) (Auto, error) {
a.loader.proxy = proxy.NewLookup(ups)
default:
- t, _, e := file.TransferParse(c, false)
+ t, _, e := parse.Transfer(c, false)
if e != nil {
return a, e
}