in service/main.go [34:41]
func optional(key, fallback string) string { got := os.Getenv(key) if got == "" { return fallback } return got }