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:
@@ -16,8 +16,14 @@ type easynameProvider struct {
|
||||
domains map[string]easynameDomain
|
||||
}
|
||||
|
||||
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("EASYNAME", newEasyname)
|
||||
providers.RegisterRegistrarType("EASYNAME", newEasyname, features)
|
||||
}
|
||||
|
||||
func newEasyname(m map[string]string) (providers.Registrar, error) {
|
||||
|
Reference in New Issue
Block a user