mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-07 21:54:10 +00:00
7 lines
190 B
Go
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"`
|
|
}
|