tfstated/pkg/model/state.go

13 lines
141 B
Go

package model
import (
"time"
)
type State struct {
Created time.Time
Id int
Lock *string
Path string
Updated time.Time
}