9 lines
176 B
Go
9 lines
176 B
Go
// +build !linux
|
|
|
|
package fingerprint
|
|
|
|
// FindCgroupMountpointDir returns an empty path on non-Linux systems
|
|
func FindCgroupMountpointDir() (string, error) {
|
|
return "", nil
|
|
}
|