1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

GANDI_V5: Use github.com/go-gandi/go-gandi, not github.com/tiramiseb/go-gandi (#883)

This commit is contained in:
Tom Limoncelli
2020-10-02 13:53:03 -04:00
committed by GitHub
parent 683ed698e9
commit 678540cfdd
4 changed files with 5 additions and 13 deletions

View File

@@ -5,7 +5,7 @@ package gandi5
import (
"fmt"
"github.com/tiramiseb/go-gandi/livedns"
"github.com/go-gandi/go-gandi/livedns"
"github.com/StackExchange/dnscontrol/v3/models"
"github.com/StackExchange/dnscontrol/v3/pkg/printer"

View File

@@ -21,8 +21,8 @@ import (
"strconv"
"strings"
gandi "github.com/go-gandi/go-gandi"
"github.com/miekg/dns/dnsutil"
gandi "github.com/tiramiseb/go-gandi"
"github.com/StackExchange/dnscontrol/v3/models"
"github.com/StackExchange/dnscontrol/v3/pkg/diff"