tfstated/pkg/model/state.go

16 lines
168 B
Go
Raw Normal View History

2025-01-22 00:46:49 +01:00
package model
import (
"time"
"go.n16f.net/uuid"
2025-01-22 00:46:49 +01:00
)
type State struct {
Created time.Time
Id uuid.UUID
2025-01-22 00:46:49 +01:00
Lock *string
Path string
Updated time.Time
}