mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
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
|
|
)
|