Fixed import paths since I changed by github id

This commit is contained in:
Ian Lewis 2018-10-22 11:06:52 +09:00
parent c072b077a3
commit 13bacfa58c
3 changed files with 5 additions and 5 deletions

View File

@ -30,9 +30,9 @@ import (
"golang.org/x/sync/errgroup" "golang.org/x/sync/errgroup"
"github.com/IanLewis/cloud-dyndns-client/pkg/backend" "github.com/ianlewis/cloud-dyndns-client/pkg/backend"
"github.com/IanLewis/cloud-dyndns-client/pkg/backend/gcp" "github.com/ianlewis/cloud-dyndns-client/pkg/backend/gcp"
"github.com/IanLewis/cloud-dyndns-client/pkg/sync" "github.com/ianlewis/cloud-dyndns-client/pkg/sync"
) )
// VERSION is the current version of the application. // VERSION is the current version of the application.

View File

@ -22,7 +22,7 @@ import (
"golang.org/x/oauth2/google" "golang.org/x/oauth2/google"
dns "google.golang.org/api/dns/v1" dns "google.golang.org/api/dns/v1"
"github.com/IanLewis/cloud-dyndns-client/pkg/backend" "github.com/ianlewis/cloud-dyndns-client/pkg/backend"
) )
var cloudDnsScopes = []string{ var cloudDnsScopes = []string{

View File

@ -23,7 +23,7 @@ import (
"sync" "sync"
"time" "time"
"github.com/IanLewis/cloud-dyndns-client/pkg/backend" "github.com/ianlewis/cloud-dyndns-client/pkg/backend"
) )
type Record struct { type Record struct {