We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4c884a commit fe8b555Copy full SHA for fe8b555
cmd/agent/subcommands/run/command_darwin.go
cmd/agent/subcommands/run/command_notwin.go
@@ -3,12 +3,18 @@
3
// This product includes software developed at Datadog (https://www.datadoghq.com/).
4
// Copyright 2016-present Datadog, Inc.
5
6
-//go:build !windows && !darwin
+//go:build !windows
7
8
package run
9
10
-import "go.uber.org/fx"
+import (
11
+ "go.uber.org/fx"
12
+
13
+ softwareinventoryfx "github.com/DataDog/datadog-agent/comp/softwareinventory/fx"
14
+)
15
16
func getPlatformModules() fx.Option {
- return fx.Options()
17
+ return fx.Options(
18
+ softwareinventoryfx.Module(),
19
+ )
20
}
0 commit comments