diff --git a/collector/pkg/detect/devices_linux.go b/collector/pkg/detect/devices_linux.go index 437694bd..912070ad 100644 --- a/collector/pkg/detect/devices_linux.go +++ b/collector/pkg/detect/devices_linux.go @@ -3,6 +3,7 @@ package detect import ( "github.com/analogj/scrutiny/collector/pkg/models" "github.com/jaypipes/ghw" + "strings" ) func DevicePrefix() string { diff --git a/collector/pkg/detect/devices_windows.go b/collector/pkg/detect/devices_windows.go index fdf0c556..ad5b8403 100644 --- a/collector/pkg/detect/devices_windows.go +++ b/collector/pkg/detect/devices_windows.go @@ -1,5 +1,11 @@ package detect +import ( + "github.com/analogj/scrutiny/collector/pkg/models" + "github.com/jaypipes/ghw" + "strings" +) + func DevicePrefix() string { return "" }