增加拉式场景

This commit is contained in:
free will
2022-07-28 21:06:08 +08:00
parent 9419e58f8b
commit 69a258a28c
13 changed files with 503 additions and 0 deletions
@@ -0,0 +1,10 @@
package main
type pSeq struct {
seq uint64
}
func (s *pSeq) GetNewSeq() uint64 {
s.seq++
return s.seq
}