mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
ecc80a5a9e
- drop qdm12/govalid dependency - upgrade qdm12/ss-server to v0.6.0 - do not unset sensitive config settings (makes no sense to me)
9 lines
140 B
Go
9 lines
140 B
Go
package secrets
|
|
|
|
func strPtrToStringIsSet(ptr *string) (s string, isSet bool) {
|
|
if ptr == nil {
|
|
return "", false
|
|
}
|
|
return *ptr, true
|
|
}
|