mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18 lines
235 B
Go
18 lines
235 B
Go
package appdefaults
|
|
|
|
const (
|
|
Address = "npipe:////./pipe/buildkitd"
|
|
Root = ".buildstate"
|
|
)
|
|
|
|
func UserAddress() string {
|
|
return Address
|
|
}
|
|
|
|
func EnsureUserAddressDir() error {
|
|
return nil
|
|
}
|
|
|
|
func UserRoot() string {
|
|
return Root
|
|
}
|