1
0
Fork 0

use any instead of interface{}

This commit is contained in:
Henrik Hautakoski 2025-10-13 09:14:45 +02:00
parent 8f5b3df1a4
commit 9d0288174e
2 changed files with 2 additions and 2 deletions

View file

@ -8,4 +8,4 @@ type Provider interface {
Update(domain string, record string, ip net.IP) error
}
type ProviderFactory func(map[string]interface{}) (Provider, error)
type ProviderFactory func(map[string]any) (Provider, error)