From aa954042ed39e38c181a2c610af3920e43b56c93 Mon Sep 17 00:00:00 2001 From: Costas Drogos Date: Tue, 24 Oct 2023 11:23:48 +0200 Subject: [PATCH] feat: add URLAppend to NameserverRecord (#10) --- nameserver.go | 1 + 1 file changed, 1 insertion(+) diff --git a/nameserver.go b/nameserver.go index 6790da6..3de359e 100644 --- a/nameserver.go +++ b/nameserver.go @@ -291,6 +291,7 @@ type NameserverRecord struct { Content string `mapstructure:"content"` TTL int `mapstructure:"TTL"` Priority int `mapstructure:"prio"` + URLAppend bool `mapstructure:"urlAppend,omitempty"` URLRedirectType string `mapstructure:"urlRedirectType"` URLRedirectTitle string `mapstructure:"urlRedirectTitle"` URLRedirectDescription string `mapstructure:"urlRedirectDescription"`