Files
grafana/pkg/infra/serverlock/model.go

10 lines
177 B
Go
Raw Normal View History

2018-12-11 14:00:09 +01:00
package serverlock
type serverLock struct {
// nolint:stylecheck
2018-12-11 14:00:09 +01:00
Id int64
OperationUID string `xorm:"operation_uid"`
2018-12-11 14:00:09 +01:00
LastExecution int64
Version int64
}