mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 00:41:27 -06:00
21cd5595e2
golang/tools commit 23ca8a263 changed the format of the leading comment to comply with some new standards discussed here: https://golang.org/issue/13560 This is the result of running generate with the latest version of stringer. Everyone working on Terraform will need to update stringer after this is merged, to avoid reverting this: go get -u golang.org/x/tools/cmd/stringer
17 lines
509 B
Go
17 lines
509 B
Go
// Code 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]]
|
|
}
|