mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +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)
|
|
}
|