summaryrefslogtreecommitdiff
path: root/adapters/external_dns.go
blob: c8612830af6ecfc60a4c64a8c624809bb42239ce (plain)
1
2
3
4
5
6
7
8
package external_dns

import "git.hatecomputers.club/hatecomputers/hatecomputers.club/database"

type ExternalDNSAdapter interface {
	CreateDNSRecord(record *database.DNSRecord) (string, error)
	DeleteDNSRecord(id string) error
}