tfstated/pkg/model/state.go

14 lines
141 B
Go
Raw Normal View History

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