mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-19 00:27:02 +01:00
10 lines
112 B
Go
10 lines
112 B
Go
package atomic
|
|
|
|
import "sync/atomic"
|
|
|
|
type (
|
|
Bool = atomic.Bool
|
|
Int32 = atomic.Int32
|
|
Int64 = atomic.Int64
|
|
)
|