package utils import "os" func Ptr(s string) *string { return &s } func IsDev() bool { strDev := os.Getenv("CLORTHO_DEV") if strDev == "true" { return true } return false }