feat(proxy): Init commit

This commit is contained in:
Björn Benouarets
2025-11-10 19:08:13 +01:00
commit 56d609fafd
9 changed files with 208 additions and 0 deletions

11
app/utils/env.go Normal file
View File

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