1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 13:35:23 +00:00
v2fly/common/platform/windows.go

18 lines
367 B
Go
Raw Normal View History

//go:build windows
2015-10-09 14:48:05 +00:00
// +build windows
package platform
2021-05-04 23:51:58 +00:00
import "path/filepath"
2015-10-13 19:41:53 +00:00
func LineSeparator() string {
return "\r\n"
}
// GetAssetLocation search for `file` in the excutable dir
2020-08-17 10:56:01 +00:00
func GetAssetLocation(file string) string {
const name = "v2ray.location.asset"
assetPath := NewEnvFlag(name).GetValue(getExecutableDir)
2021-05-04 23:51:58 +00:00
return filepath.Join(assetPath, file)
2020-08-17 10:56:01 +00:00
}