mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
15 lines
325 B
Go
15 lines
325 B
Go
|
package backend
|
||
|
|
||
|
//go:generate stringer -type=OperationType operation_type.go
|
||
|
|
||
|
// OperationType is an enum used with Operation to specify the operation
|
||
|
// type to perform for Terraform.
|
||
|
type OperationType uint
|
||
|
|
||
|
const (
|
||
|
OperationTypeInvalid OperationType = iota
|
||
|
OperationTypeRefresh
|
||
|
OperationTypePlan
|
||
|
OperationTypeApply
|
||
|
)
|