mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -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
486 B
Go
17 lines
486 B
Go
// Code generated by "stringer -type=ResourceMode -output=resource_mode_string.go resource_mode.go"; DO NOT EDIT.
|
|
|
|
package config
|
|
|
|
import "fmt"
|
|
|
|
const _ResourceMode_name = "ManagedResourceModeDataResourceMode"
|
|
|
|
var _ResourceMode_index = [...]uint8{0, 19, 35}
|
|
|
|
func (i ResourceMode) String() string {
|
|
if i < 0 || i >= ResourceMode(len(_ResourceMode_index)-1) {
|
|
return fmt.Sprintf("ResourceMode(%d)", i)
|
|
}
|
|
return _ResourceMode_name[_ResourceMode_index[i]:_ResourceMode_index[i+1]]
|
|
}
|