Add and fix nlreturn (new line return)

This commit is contained in:
Kristoffer Dalby 2021-11-14 16:46:09 +01:00
parent d0ef850035
commit 89eb13c6cb
No known key found for this signature in database
GPG key ID: 09F62DC067465735
25 changed files with 198 additions and 1 deletions

2
dns.go
View file

@ -69,6 +69,7 @@ func generateMagicDNSRootDomains(
}
fqdns = append(fqdns, fqdn)
}
return fqdns, nil
}
@ -99,5 +100,6 @@ func getMapResponseDNSConfig(
} else {
dnsConfig = dnsConfigOrig
}
return dnsConfig, nil
}