mirror of
https://github.com/nikdoof/vsphere-influxdb-go.git
synced 2025-12-20 22:19:23 +00: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)
|
|
}
|