hatecomputers.club/adapters/external_dns/external_dns.go

9 lines
230 B
Go
Raw Normal View History

2024-04-03 16:27:55 -04:00
package external_dns
import "git.hatecomputers.club/hatecomputers/hatecomputers.club/database"
type ExternalDNSAdapter interface {
CreateDNSRecord(record *database.DNSRecord) (string, error)
DeleteDNSRecord(id string) error
}