mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-11 06:01:36 -04:00
12 lines
420 B
Go
12 lines
420 B
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// 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
|