mirror of
https://gitee.com/energye/energy.git
synced 2024-12-05 05:08:17 +08:00
29 lines
798 B
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
|
|
)
|