chore(settings): use github.com/qdm12/gosettings

This commit is contained in:
Quentin McGaw
2023-05-25 12:08:43 +00:00
parent 1827a03afd
commit a43973c093
31 changed files with 461 additions and 496 deletions

View File

@@ -28,7 +28,7 @@ func OverrideWithNumber[T Number](existing, other T) (result T) { //nolint:iretu
return other
}
func OverrideWithIP(existing, other netip.Addr) (result netip.Addr) {
func OverrideWithValidator(existing, other netip.Addr) (result netip.Addr) {
if !other.IsValid() {
return existing
}