12 lines
340 B
Go
12 lines
340 B
Go
//go:build windows
|
|
|
|
package app
|
|
|
|
import "os"
|
|
|
|
// Windows access control is determined by ACLs rather than POSIX mode bits.
|
|
func validateSecretDirectoryPrivacy(_ os.FileInfo) error { return nil }
|
|
|
|
// Windows access control is determined by ACLs rather than POSIX mode bits.
|
|
func validateSecretFilePrivacy(_ os.FileInfo) error { return nil }
|