remove redundant func

This commit is contained in:
onyx-and-iris 2025-05-01 08:35:35 +01:00
parent 01e7871bad
commit 891057ff86

View File

@ -1,11 +0,0 @@
package main
import "os"
func getEnv(key, defaultValue string) string {
value := os.Getenv(key)
if value == "" {
return defaultValue
}
return value
}