10 lines
205 B
Go
10 lines
205 B
Go
package service
|
|
|
|
import "dnsupdater/dns"
|
|
|
|
type Service interface {
|
|
List(domain string) (dns.RecordList, error)
|
|
Update(domain, recordID, ip string) error
|
|
}
|
|
|
|
type Factory func(map[string]any) (any, error)
|