Skip to content

Commit

Permalink
doc: update record service
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Tien authored and joeig committed Sep 13, 2023
1 parent aea4fb1 commit a5f0513
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ err := pdns.Zones.Delete(ctx, "example.com")
err := pdns.Records.Add(ctx, "example.com", "www.example.com", powerdns.RRTypeAAAA, 60, []string{"::1"})
err := pdns.Records.Change(ctx, "example.com", "www.example.com", powerdns.RRTypeAAAA, 3600, []string{"::1"})
err := pdns.Records.Delete(ctx, "example.com", "www.example.com", powerdns.RRTypeA)
records, err := pdns.Records.Get(ctx, "example.com", "www.example.com", powerdns.RRTypePtr(powerdns.RRTypeA))
```

### Request server information and statistics
Expand Down

0 comments on commit a5f0513

Please sign in to comment.