mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06:00
397e1b3132
The local backend implementation is an implementation of backend.Enhanced that recreates all the behavior of the CLI but through the backend interface.
12 lines
208 B
Go
12 lines
208 B
Go
package local
|
|
|
|
//go:generate stringer -type=countHookAction hook_count_action.go
|
|
|
|
type countHookAction byte
|
|
|
|
const (
|
|
countHookActionAdd countHookAction = iota
|
|
countHookActionChange
|
|
countHookActionRemove
|
|
)
|