10 lines
208 B
Go
10 lines
208 B
Go
// +build !linux
|
|
|
|
package main
|
|
|
|
// Dummy version of this function, only for non-Linux systems.
|
|
// Having this allows unit tests to be run on other platforms (e.g. macOS)
|
|
func checkFS(path string) {
|
|
return
|
|
}
|