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

15 lines
166 B
Go

package model
import (
"time"
"go.n16f.net/uuid"
)
type State struct {
Created time.Time
Id uuid.UUID
Lock *Lock
Path string
Updated time.Time
}