github.com/wangzhucn/terraform@v0.6.7-0.20151109233120-4eea011b56b3/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  )