mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
52c154a221
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
10 lines
177 B
Go
10 lines
177 B
Go
package serverlock
|
|
|
|
type serverLock struct {
|
|
// nolint:stylecheck
|
|
Id int64
|
|
OperationUID string `xorm:"operation_uid"`
|
|
LastExecution int64
|
|
Version int64
|
|
}
|