Skip to content

Commit

Permalink
refactor: move impl to its own directory
Browse files Browse the repository at this point in the history
  • Loading branch information
pgimalac committed May 13, 2024
1 parent 93ec34c commit 7636d9b
Show file tree
Hide file tree
Showing 20 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/agent/subcommands/dogstatsdreplay/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/DataDog/datadog-agent/comp/core"
"github.com/DataDog/datadog-agent/comp/core/config"
"github.com/DataDog/datadog-agent/comp/core/log"
"github.com/DataDog/datadog-agent/comp/dogstatsd/replay"
replay "github.com/DataDog/datadog-agent/comp/dogstatsd/replay/impl"
"github.com/DataDog/datadog-agent/pkg/api/security"
pkgconfig "github.com/DataDog/datadog-agent/pkg/config"
pb "github.com/DataDog/datadog-agent/pkg/proto/pbgo/core"
Expand Down
2 changes: 1 addition & 1 deletion comp/dogstatsd/replay/fx/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package fx

import (
"github.com/DataDog/datadog-agent/comp/dogstatsd/replay"
replay "github.com/DataDog/datadog-agent/comp/dogstatsd/replay/impl"
"github.com/DataDog/datadog-agent/pkg/util/fxutil"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion comp/dogstatsd/server/serverless.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
logComponentImpl "github.com/DataDog/datadog-agent/comp/core/log/logimpl"
"github.com/DataDog/datadog-agent/comp/core/workloadmeta"
"github.com/DataDog/datadog-agent/comp/dogstatsd/pidmap/pidmapimpl"
"github.com/DataDog/datadog-agent/comp/dogstatsd/replay"
replay "github.com/DataDog/datadog-agent/comp/dogstatsd/replay/impl"
"github.com/DataDog/datadog-agent/comp/dogstatsd/serverDebug/serverdebugimpl"
"github.com/DataDog/datadog-agent/pkg/aggregator"
"github.com/DataDog/datadog-agent/pkg/config"
Expand Down

0 comments on commit 7636d9b

Please sign in to comment.