github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/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  )