mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 07:19:26 +00:00
16 lines
230 B
Go
16 lines
230 B
Go
package helper
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
func EnvGet(key string) string {
|
|
err := godotenv.Load("../.env")
|
|
if err != nil {
|
|
log.Fatal("Error loading .env file")
|
|
}
|
|
return os.Getenv("VITE_" + key)
|
|
}
|