fix: remove unused config helper
All checks were successful
CI / hygiene (push) Successful in 3s
Build and Deploy / build-and-deploy (push) Successful in 28s
CI / test (push) Successful in 22s

This commit is contained in:
Grendgi
2026-06-18 10:28:43 +03:00
parent b81a8ee6be
commit 8d06cfabb1

View File

@@ -125,13 +125,6 @@ func envCSV(key string) []string {
return out
}
func envCSVDefault(key string, fallback []string) []string {
if values := envCSV(key); len(values) > 0 {
return values
}
return fallback
}
func defaultAudioPrompt() string {
return ""
}