mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
11 lines
200 B
Go
11 lines
200 B
Go
|
// +build !windows
|
||
|
|
||
|
package meta
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
// renameFile will rename the source to target using os function.
|
||
|
func renameFile(oldpath, newpath string) error {
|
||
|
return os.Rename(oldpath, newpath)
|
||
|
}
|