MCPcopy Create free account
hub / github.com/dropbox/dbxcli / getEnv

Function getEnv

cmd/root.go:42–48  ·  view source on GitHub ↗
(key, fallback string)

Source from the content-addressed store, hash-verified

40)
41
42func getEnv(key, fallback string) string {
43 value, exists := os.LookupEnv(key)
44 if !exists {
45 value = fallback
46 }
47 return value
48}
49
50var (
51 personalAppKey = defaultPersonalAppKey

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected