opentofu/command/hook_count_action.go
2015-06-25 20:11:29 -07:00

12 lines
210 B
Go

package command
//go:generate stringer -type=countHookAction hook_count_action.go
type countHookAction byte
const (
countHookActionAdd countHookAction = iota
countHookActionChange
countHookActionRemove
)