Files
buildx/vendor/github.com/tonistiigi/fsutil/root_dir_unix.go
T

15 lines
208 B
Go

//go:build linux || darwin || freebsd || netbsd || openbsd || dragonfly
package fsutil
import (
"os"
"sync"
)
type rootDirState struct {
rootDirOnce sync.Once
rootDir *os.File
rootDirErr error
}