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