dnscontrol/docs/writing-providers.md
2017-04-13 11:02:08 -06:00

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.