godotenv/autoload/autoload.go
2023-11-30 11:05:09 +01:00

16 lines
246 B
Go

package autoload
/*
You can just read the .env file on import just by doing
import _ "github.com/joho/godotenv/autoload"
And bob's your mother's brother
*/
import "git.coopcloud.tech/coop-cloud/godotenv"
func init() {
godotenv.Load()
}