Skip to content

nrdcg/auroradns

Repository files navigation

Go library for accessing the Aurora DNS API

Build Status PkgGoDev Go Report Card

An Aurora DNS API client written in Go.

auroradns is a Go client library for accessing the Aurora DNS API.

Available API methods

Zones:

  • create
  • delete
  • list

Records:

  • create
  • delete
  • list

Example

tr, _ := auroradns.NewTokenTransport("apiKey", "secret")
client, _ := auroradns.NewClient(tr.Client())

zones, _, _ := client.GetZones()

fmt.Println(zones)

API Documentation