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