This commit is contained in:
2025-04-28 00:04:14 +02:00
parent 39a80829c9
commit 8858578f84
16 changed files with 758 additions and 1 deletions

14
config/config.go Normal file
View File

@@ -0,0 +1,14 @@
package config
import (
"log"
"github.com/joho/godotenv"
)
func LoadEnv() {
err := godotenv.Load()
if err != nil {
log.Println("Keine .env Datei gefunden, verwende Umgebungsvariablen")
}
}