mirror of
https://github.com/nikdoof/vsphere-influxdb-go.git
synced 2025-12-21 14:39:22 +00:00
add vendoring with go dep
This commit is contained in:
10
vendor/github.com/influxdata/influxdb/services/meta/file_unix.go
generated
vendored
Normal file
10
vendor/github.com/influxdata/influxdb/services/meta/file_unix.go
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
// +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)
|
||||
}
|
||||
Reference in New Issue
Block a user