package config import "os" func getEnv(key, fallback string) string { if value, ok := os.LookupEnv(key); ok { return value } return fallback }