tfstated/pkg/model/version.go
Julien Dessaux 8f17a3661e
Some checks failed
main / main (push) Failing after 20s
main / deploy (push) Has been skipped
main / publish (push) Has been skipped
chore(webui): prepare lock code for webui force unlock
#13
2025-05-02 00:26:32 +02:00

17 lines
225 B
Go

package model
import (
"encoding/json"
"time"
"go.n16f.net/uuid"
)
type Version struct {
AccountId uuid.UUID
Created time.Time
Data json.RawMessage
Id uuid.UUID
Lock *Lock
StateId uuid.UUID
}