66c521ca17
This removes a cyclical dependency when importing client/structs from dependencies of the plugin_loader, specifically, drivers. Due to client/config also depending on the plugin_loader. It also better reflects the ownership of fingerprint structs, as they are fairly internal to the fingerprint manager.
14 lines
332 B
Go
14 lines
332 B
Go
// +build !linux
|
|
|
|
package fingerprint
|
|
|
|
// FindCgroupMountpointDir is used to find the cgroup mount point on a Linux
|
|
// system. Here it is a no-op implemtation
|
|
func FindCgroupMountpointDir() (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (f *CGroupFingerprint) Fingerprint(*FingerprintRequest, *FingerprintResponse) error {
|
|
return nil
|
|
}
|