mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-10-31 22:36:38 +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
|
||
|
}
|