You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/plans/action.go

15 lines
213 B

package plans
type Action rune
const (
NoOp Action = 0
Create Action = '+'
Read Action = '←'
Update Action = '~'
Replace Action = '±'
Delete Action = '-'
)
//go:generate stringer -type Action