This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dex/storage/ent/utils.go
2021-09-13 14:25:17 +04:00

11 lines
147 B
Go

package ent
import "os"
func getenv(key, defaultVal string) string {
if val := os.Getenv(key); val != "" {
return val
}
return defaultVal
}