feat: initial commit

This commit is contained in:
Björn Benouarets
2025-10-18 21:02:31 +02:00
parent 44ce70090e
commit 692f8a29c9
11 changed files with 177 additions and 0 deletions

10
utils/env.go Normal file
View File

@@ -0,0 +1,10 @@
package utils
import "os"
func GetEnv(key, def string) string {
if val, ok := os.LookupEnv(key); ok {
return val
}
return def
}