package config import ( "os" ) func GetEnv(key, fallback string) string { val := os.Getenv(key) if val == "" { return fallback } return val }