mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
13 lines
172 B
Go
13 lines
172 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func envOrDefault(key, defaultValue string) string {
|
|
result := os.Getenv(key)
|
|
if result == "" {
|
|
return defaultValue
|
|
}
|
|
return result
|
|
}
|