mirror of
https://gitee.com/willfree/min-usage.git
synced 2026-06-03 08:16:57 +08:00
11 lines
109 B
Go
11 lines
109 B
Go
package main
|
|
|
|
type pSeq struct {
|
|
seq uint64
|
|
}
|
|
|
|
func (s *pSeq) GetNewSeq() uint64 {
|
|
s.seq++
|
|
return s.seq
|
|
}
|