notify.moe/arn/Production.go

16 lines
271 B
Go

package arn
import (
"os"
)
// IsProduction returns true if PRODUCTION is set to 1.
func IsProduction() bool {
return os.Getenv("PRODUCTION") == "1"
}
// IsDevelopment returns true if PRODUCTION is not set to 1.
func IsDevelopment() bool {
return !IsProduction()
}