task-processor/config/helper.go

11 lines
150 B
Go
Raw Normal View History

2026-02-18 15:53:29 +03:00
package config
import "os"
func getEnv(key, fallback string) string {
if value, ok := os.LookupEnv(key); ok {
return value
}
return fallback
}