mirror of
https://github.com/yusing/godoxy.git
synced 2026-02-25 20:04:55 +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
|
|
)
|