energy/cmd/internal/consts.go

29 lines
798 B
Go

//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
//
//----------------------------------------
package internal
import "runtime"
const (
cefKey = "cef"
energyKey = "energy"
download_version_config_url = "https://energy.yanghy.cn/autoconfig/edv.json"
download_extract_url = "https://energy.yanghy.cn/autoconfig/extract.json"
frameworkCache = "EnergyFrameworkDownloadCache"
ENERGY_HOME_KEY = "ENERGY_HOME"
)
const (
isWindows = runtime.GOOS == "windows" //support
isLinux = runtime.GOOS == "linux" //support
isDarwin = runtime.GOOS == "darwin" //support
)