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