mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
9 lines
191 B
Go
9 lines
191 B
Go
|
|
package file
|
||
|
|
|
||
|
|
// Notify sends notifies to the configured remotes. It will try up to three times
|
||
|
|
// before giving up on a specific remote.
|
||
|
|
func Notify(remotes []string) error {
|
||
|
|
return nil
|
||
|
|
|
||
|
|
}
|