From 09d907e6503210aa976797409c14d7afc6c21575 Mon Sep 17 00:00:00 2001 From: Matt Burchett Date: Mon, 14 Jan 2019 12:43:20 -0600 Subject: [PATCH] Fixing --- pkg/resolver/resolver.go | 3 ++- pkg/shell/shell.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/resolver/resolver.go b/pkg/resolver/resolver.go index c56d6b4..fbca664 100644 --- a/pkg/resolver/resolver.go +++ b/pkg/resolver/resolver.go @@ -4,9 +4,10 @@ import ( "errors" "fmt" "log" - "rfi-sower/pkg/utils" "strings" + "git.linuxrocker.com/mattburchett/go_tab-magic/pkg/utils" + "git.linuxrocker.com/mattburchett/go_tab-magic/pkg/config" "github.com/miekg/dns" ) diff --git a/pkg/shell/shell.go b/pkg/shell/shell.go index eaa1415..8c9f0c3 100644 --- a/pkg/shell/shell.go +++ b/pkg/shell/shell.go @@ -2,9 +2,10 @@ package shell import ( "fmt" - "rfi-sower/pkg/utils" "strings" + "git.linuxrocker.com/mattburchett/go_tab-magic/pkg/utils" + "git.linuxrocker.com/mattburchett/go_tab-magic/pkg/config" )