mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 17:26:10 +08:00
700 B
700 B
layout |
---|
default |
Writing new DNS providers
Writing a new DNS provider is a relatively straightforward process. You essentially need to implement the providers.DNSServiceProvider interface.
...
More info to follow soon.
Documentation
Please add a page to the docs folder for your provider, and add it to the list in the main project readme.
Vendoring Dependencies
If your provider depends on other go packages, then you must vendor them. To do this, use govendor.
go get github.com/kardianos/govendor
govendor add +e
is usually sufficient.