From 8d06cfabb199a070474ab0893197eb5d47b9b55b Mon Sep 17 00:00:00 2001 From: Grendgi Date: Thu, 18 Jun 2026 10:28:43 +0300 Subject: [PATCH] fix: remove unused config helper --- internal/config/config.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 3d07db9..e9ff238 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -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 "" }