htmgo/framework/h/env.go
maddalax 16cdb66e0d add ent for sql
some improvements on killing the running process on reboot
2024-09-17 10:41:29 -05:00

15 lines
238 B
Go

package h
import "os"
func IsWatchMode() bool {
return os.Getenv("WATCH_MODE") == "true"
}
func IsDevelopment() bool {
return os.Getenv("ENV") == "development"
}
func IsProduction() bool {
return os.Getenv("ENV") == "production"
}