aboutsummaryrefslogtreecommitdiff
path: root/pkg/worker
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/worker')
-rw-r--r--pkg/worker/list_processor.go3
-rw-r--r--pkg/worker/list_processor_test.go3
2 files changed, 4 insertions, 2 deletions
diff --git a/pkg/worker/list_processor.go b/pkg/worker/list_processor.go
index c4c3781..2a51466 100644
--- a/pkg/worker/list_processor.go
+++ b/pkg/worker/list_processor.go
@@ -3,8 +3,9 @@ package worker
import (
"context"
"errors"
- "log/slog"
"sync"
+
+ "golang.org/x/exp/slog"
)
type (
diff --git a/pkg/worker/list_processor_test.go b/pkg/worker/list_processor_test.go
index 21489e8..053ebbd 100644
--- a/pkg/worker/list_processor_test.go
+++ b/pkg/worker/list_processor_test.go
@@ -5,11 +5,12 @@ package worker
import (
"context"
"errors"
- "log/slog"
"math/rand"
"sync"
"testing"
+ "golang.org/x/exp/slog"
+
"git.sr.ht/~gabrielgio/img/pkg/testkit"
)