diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-12-01 00:52:33 +0100 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-12-01 00:52:33 +0100 |
commit | 29e9fd3136f2e2fe301cbe07967fb3bb4ffcee2a (patch) | |
tree | cf5248dc0c3efd21845062d4885ed0dd0890d9cb /pkg/worker | |
parent | 417041797674319485bea96cb38489670ff3b2ef (diff) | |
download | lens-29e9fd3136f2e2fe301cbe07967fb3bb4ffcee2a.tar.gz lens-29e9fd3136f2e2fe301cbe07967fb3bb4ffcee2a.tar.bz2 lens-29e9fd3136f2e2fe301cbe07967fb3bb4ffcee2a.zip |
This is done until go1.21 hits alpine repository.
Diffstat (limited to 'pkg/worker')
-rw-r--r-- | pkg/worker/list_processor.go | 3 | ||||
-rw-r--r-- | pkg/worker/list_processor_test.go | 3 |
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" ) |