13 lines
288 B
Go
13 lines
288 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
//go:build plus
|
|
|
|
package utils
|
|
|
|
import "os"
|
|
|
|
// IsDebugEnv 检查当前是否在调试环境
|
|
func IsDebugEnv() bool {
|
|
debug, _ := os.LookupEnv("EdgeDebug")
|
|
return debug == "on"
|
|
}
|