mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-18 17:37:04 +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
|
|
)
|