mirror of https://github.com/hashicorp/terraform
parent
a76105b0f1
commit
8ebdc1e786
@ -0,0 +1,16 @@
|
||||
// generated by stringer -type=countHookAction hook_count_action.go; DO NOT EDIT
|
||||
|
||||
package command
|
||||
|
||||
import "fmt"
|
||||
|
||||
const _countHookAction_name = "countHookActionAddcountHookActionChangecountHookActionRemove"
|
||||
|
||||
var _countHookAction_index = [...]uint8{0, 18, 39, 60}
|
||||
|
||||
func (i countHookAction) String() string {
|
||||
if i >= countHookAction(len(_countHookAction_index)-1) {
|
||||
return fmt.Sprintf("countHookAction(%d)", i)
|
||||
}
|
||||
return _countHookAction_name[_countHookAction_index[i]:_countHookAction_index[i+1]]
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
package command
|
||||
|
||||
//go:generate stringer -type=countHookAction hook_count_action.go
|
||||
|
||||
type countHookAction byte
|
||||
|
||||
const (
|
||||
countHookActionAdd countHookAction = iota
|
||||
countHookActionChange
|
||||
countHookActionRemove
|
||||
)
|
||||
@ -0,0 +1 @@
|
||||
// Nothing!
|
||||
Loading…
Reference in new issue