pdns-auth-proxy/vendor/gopkg.in/djherbis/times.v1/use_generic_stat.go

16 lines
334 B
Go
Raw Permalink Normal View History

2023-11-17 05:55:06 +00:00
// +build !windows
package times
import "os"
// Stat returns the Timespec for the given filename.
func Stat(name string) (Timespec, error) {
return stat(name, os.Stat)
}
// Lstat returns the Timespec for the given filename, and does not follow Symlinks.
func Lstat(name string) (Timespec, error) {
return stat(name, os.Lstat)
}