dnszone.go raw

   1  package bunny
   2  
   3  // DNSZoneService communicates with the /dnszone API endpoint.
   4  //
   5  // Bunny.net API docs: https://docs.bunny.net/reference/dnszonepublic_index
   6  type DNSZoneService struct {
   7  	client *Client
   8  }
   9