mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
10 lines
122 B
Go
10 lines
122 B
Go
|
|
package uniqueid
|
||
|
|
|
||
|
|
import "sync/atomic"
|
||
|
|
|
||
|
|
var id uint64 = 0
|
||
|
|
|
||
|
|
func IncrementID() uint64 {
|
||
|
|
return atomic.AddUint64(&id, 1)
|
||
|
|
}
|