1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

FEATURE: New capability: Can provider run concurrently (#2876)

This commit is contained in:
Tom Limoncelli
2024-03-20 12:36:54 -04:00
committed by GitHub
parent e52ec54453
commit 4765f402bd
54 changed files with 168 additions and 80 deletions

View File

@@ -19,8 +19,14 @@ Info required in `creds.json`:
*/
var features = providers.DocumentationNotes{
// The default for unlisted capabilities is 'Cannot'.
// See providers/capabilities.go for the entire list of capabilities.
providers.CanConcur: providers.Cannot(),
}
func init() {
providers.RegisterRegistrarType("INTERNETBS", newInternetBs)
providers.RegisterRegistrarType("INTERNETBS", newInternetBs, features)
}
func newInternetBs(m map[string]string) (providers.Registrar, error) {