We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3e9990 commit c74be6dCopy full SHA for c74be6d
README.md
@@ -8,6 +8,9 @@ This package implements the [libdns interfaces](https://github.com/libdns/libdns
8
[PowerDNS](https://powerdns.com/), allowing you to
9
manage DNS records.
10
11
+This uses [mittwald/go-powerdns](https://github.com/mittwald/go-powerdns) under the covers
12
+to actually talk to powerdns.
13
+
14
To configure this, simply specify the server URL and the access token.
15
16
client.go
@@ -3,11 +3,12 @@ package powerdns
3
import (
4
"context"
5
"fmt"
6
- "github.com/libdns/powerdns/txtsanitize"
7
"io"
"strings"
"github.com/libdns/libdns"
+ "github.com/libdns/powerdns/txtsanitize"
pdns "github.com/mittwald/go-powerdns"
"github.com/mittwald/go-powerdns/apis/zones"
)
0 commit comments