mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-11 14:53:49 +00:00
13 lines
237 B
Go
13 lines
237 B
Go
|
//go:build freebsd || openbsd || dragonfly || netbsd
|
||
|
// +build freebsd openbsd dragonfly netbsd
|
||
|
|
||
|
package fsremote
|
||
|
|
||
|
func pathToCanonical(path string) string {
|
||
|
return path
|
||
|
}
|
||
|
|
||
|
func canonicalPathToLocal(path string) string {
|
||
|
return path
|
||
|
}
|