tfstated/pkg/model/lock.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

13 lines
304 B
Go

package model
import "time"
type Lock struct {
Created time.Time `json:"Created"`
Id string `json:"ID"`
Info string `json:"Info"`
Operation string `json:"Operation"`
Path string `json:"Path"`
Version string `json:"Version"`
Who string `json:"Who"`
}