grafana/pkg/infra/serverlock/model.go
Arve Knudsen 52c154a221
Backend: Rename variables for style conformance (#29097)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
2020-11-17 17:09:14 +01:00

10 lines
177 B
Go

package serverlock
type serverLock struct {
// nolint:stylecheck
Id int64
OperationUID string `xorm:"operation_uid"`
LastExecution int64
Version int64
}