mirror of
https://github.com/mudler/luet.git
synced 2025-06-29 08:46:51 +00:00
12 lines
137 B
Go
12 lines
137 B
Go
// +build windows
|
|
|
|
package mtree
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func lchtimes(name string, atime time.Time, mtime time.Time) error {
|
|
return nil
|
|
}
|