2
0

Use Go 1.19 atomics

This commit is contained in:
Jan Dubsky
2022-10-26 13:03:28 +02:00
committed by Jack Christensen
parent d970a39050
commit 86ffb019e1
3 changed files with 3 additions and 8 deletions
+1 -1
View File
@@ -4,10 +4,10 @@ import (
"context"
"errors"
"sync"
"sync/atomic"
"time"
"github.com/jackc/puddle/v2/internal/genstack"
"go.uber.org/atomic"
"golang.org/x/sync/semaphore"
)