github.com/brandonstevens/terraform@v0.9.6-0.20170512224929-5367f2607e16/command/hook_count_action.go (about)

     1  package command
     2  
     3  //go:generate stringer -type=countHookAction hook_count_action.go
     4  
     5  type countHookAction byte
     6  
     7  const (
     8  	countHookActionAdd countHookAction = iota
     9  	countHookActionChange
    10  	countHookActionRemove
    11  )