package env
import "os"
// IsLocalDebug 是否为本地调试模式
func IsLocalDebug() bool {
return os.Getenv("LOCAL_DEBUG") == "1"
}