mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-12-31 04:31:49 +08:00
15 lines
487 B
Markdown
15 lines
487 B
Markdown
---
|
|
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.](https://godoc.org/github.com/StackExchange/dnscontrol/providers#DNSServiceProvider)
|
|
|
|
...
|
|
|
|
More info to follow soon.
|
|
|
|
## Vendoring Dependencies
|
|
|
|
If your provider depends on other go packages, then you must vendor them. To do this, use [govendor](https://github.com/kardianos/govendor).
|