Files
gluetun/internal/configuration/sources/secrets/helpers.go

9 lines
140 B
Go
Raw Normal View History

package secrets
func strPtrToStringIsSet(ptr *string) (s string, isSet bool) {
if ptr == nil {
return "", false
}
return *ptr, true
}