mirror of https://github.com/rancher/wins.git
14 lines
365 B
Go
14 lines
365 B
Go
package defaults
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
var (
|
|
AppVersion = "dev"
|
|
AppCommit = "0000000"
|
|
ConfigPath = filepath.Join("c:/", "etc", "rancher", "wins", "config")
|
|
UpgradeWatchingPath = filepath.Join("c:/", "etc", "rancher", "wins", "wins.exe")
|
|
CertPath = filepath.Join("c:/", "etc", "rancher", "agent", "ranchercert")
|
|
)
|