You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
306 B
Go
24 lines
306 B
Go
6 years ago
|
package appdefaults
|
||
|
|
||
|
const (
|
||
|
Address = "npipe:////./pipe/buildkitd"
|
||
|
Root = ".buildstate"
|
||
|
ConfigDir = ""
|
||
|
)
|
||
|
|
||
|
func UserAddress() string {
|
||
|
return Address
|
||
|
}
|
||
|
|
||
|
func EnsureUserAddressDir() error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func UserRoot() string {
|
||
|
return Root
|
||
|
}
|
||
|
|
||
|
func UserConfigDir() string {
|
||
|
return ConfigDir
|
||
|
}
|