mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
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
505 B
Go
17 lines
505 B
Go
// Code generated by "stringer -type=OperationType operation_type.go"; DO NOT EDIT.
|
|
|
|
package backend
|
|
|
|
import "fmt"
|
|
|
|
const _OperationType_name = "OperationTypeInvalidOperationTypeRefreshOperationTypePlanOperationTypeApply"
|
|
|
|
var _OperationType_index = [...]uint8{0, 20, 40, 57, 75}
|
|
|
|
func (i OperationType) String() string {
|
|
if i >= OperationType(len(_OperationType_index)-1) {
|
|
return fmt.Sprintf("OperationType(%d)", i)
|
|
}
|
|
return _OperationType_name[_OperationType_index[i]:_OperationType_index[i+1]]
|
|
}
|