mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
17 lines
247 B
Go
17 lines
247 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package local
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const haveSetBTime = false
|
|
|
|
// setBTime changes the the birth time of the file passed in
|
|
func setBTime(name string, btime time.Time) error {
|
|
// Does nothing
|
|
return nil
|
|
}
|