MustGet
Overview
MustGet returns the value or panics if missing.
Part of the env package — Node.js analog: dotenv / process.env.
Signature
go
func MustGet(key string) stringCompare: Node.js · Standard Go · gox
js
// Typical dotenv / process.env pattern in Node.jsgo
v := os.Getenv("KEY")
if v == "" {
v = "default"
}go
import "github.com/sahilkhaire/gox/env"
secret := env.MustGet("JWT_SECRET")Example
go
import "github.com/sahilkhaire/gox/env"
secret := env.MustGet("JWT_SECRET")Tips
Call Load() once at startup, then use typed getters instead of parsing strings manually.
Standard library alternative
Use the standard library directly:
go
v := os.Getenv("KEY")
if v == "" {
v = "default"
}