mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-12-28 19:23:07 +08:00
4fef4a8550
* Implement a basic DNSimple provider. Handles domain delegation as well as record create, update, and delete. Note that this is completely untested at the moment. It’s so alpha it might burn your face off. * Add some inline comments. Always use the StackExchange libs. * Clean up dnsimple docs a little * This will need to be changed before merging. * Import the dnsimple dnscontrol package from its expected path * Properly build the FQDN and implement record listing so create/update/delete are used correctly. * Add support for overriding base URL to allow connection to sandbox. * Vendor dnsimple-go and its dependencies. * Remove unnecessary doc file. * Use dnsutil.AddOrigin for combining record name and origin. * Modifying dnsimple provider to pass tests
15 lines
799 B
Go
15 lines
799 B
Go
//Package all is simply a container to reference all known provider implementations for easy import into other packages
|
|
package all
|
|
|
|
import (
|
|
//Define all known providers here. They should each register themselves with the providers package via init function.
|
|
_ "github.com/StackExchange/dnscontrol/providers/activedir"
|
|
_ "github.com/StackExchange/dnscontrol/providers/bind"
|
|
_ "github.com/StackExchange/dnscontrol/providers/cloudflare"
|
|
_ "github.com/StackExchange/dnscontrol/providers/dnsimple"
|
|
_ "github.com/StackExchange/dnscontrol/providers/gandi"
|
|
_ "github.com/StackExchange/dnscontrol/providers/google"
|
|
_ "github.com/StackExchange/dnscontrol/providers/namecheap"
|
|
_ "github.com/StackExchange/dnscontrol/providers/namedotcom"
|
|
_ "github.com/StackExchange/dnscontrol/providers/route53"
|
|
)
|