summaryrefslogtreecommitdiff
path: root/internal/app/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/app.go')
-rw-r--r--internal/app/app.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/app/app.go b/internal/app/app.go
index 4544f0f..c18dc30 100644
--- a/internal/app/app.go
+++ b/internal/app/app.go
@@ -15,7 +15,6 @@ func Run(cfg *config.Config) error {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
- scriptPath := ScriptPath()
store := NewStore()
var wg sync.WaitGroup
@@ -24,7 +23,7 @@ func Run(cfg *config.Config) error {
wg.Add(1)
go func() {
defer wg.Done()
- _ = collector.Run(ctx, h, cfg, store, scriptPath)
+ _ = collector.Run(ctx, h, cfg, store)
}()
}