Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EnvMap (0.05 sec)

  1. internal/config/config.go

    			hkv, _ := hkvs.Lookup(kv.Key)
    			if hkv.Secret && redactSecrets {
    				// Skip adding any secret to the returned value.
    				continue
    				// envPair.Value = redactedSecret
    			}
    			envMap[kv.Key] = envPair
    		}
    	}
    	return envMap
    }
    
    // EnvPair represents an environment variable and its value.
    type EnvPair struct {
    	Name, Value string
    }
    
    // SubsysInfo holds config info for a subsystem target.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 03 18:23:41 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top