Initial open source release

This commit is contained in:
A 2026-06-04 01:37:39 +08:00
commit 74992e893f
377 changed files with 118084 additions and 0 deletions

10
internal/domain/update.go Normal file
View file

@ -0,0 +1,10 @@
package domain
// UpdateState 是账号的 update 状态(pts/qts/seq/date)。
// 第一阶段空账号为零值;真实状态机属第二阶段。
type UpdateState struct {
Pts int
Qts int
Date int
Seq int
}