//go:build !linux // +build !linux package main import ( "context" "errors" ) // collectProxVMServices для неподдерживаемых платформ func collectProxVMServices(ctx context.Context) (map[string]any, error) { return nil, errors.New("proxvmservices collector is not supported on this platform") }