mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 08:51:02 -06:00
034e944070
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
7 lines
271 B
Go
7 lines
271 B
Go
// Package planfile deals with the file format used to serialize plans to disk
|
|
// and then deserialize them back into memory later.
|
|
//
|
|
// A plan file contains the planned changes along with the configuration and
|
|
// state snapshot that they are based on.
|
|
package planfile
|