3x-ui/database/model/shared_state.go
2026-04-10 11:16:16 +08:00

7 lines
190 B
Go

package model
type SharedState struct {
Key string `json:"key" gorm:"primaryKey"`
Version int64 `json:"version" gorm:"not null;default:0"`
UpdatedAt int64 `json:"updatedAt"`
}